Dacons LLP Mailit for C/C++ | Version 1.0.8 |
Emai::Pop3Session Class ReferenceInheritance diagram for Emai::Pop3Session: ![]()
Detailed Description
Definition at line 190 of file EmaiPOP3.hpp. Member Function Documentation
Establishes connection to the server.
Definition at line 551 of file EmaiPOP3.hpp. References Emai::CheckErrorCode(), EmaiPop3Connect(), and Emai::Object< EmaiPop3Session >::mObject. 00556 { 00557 CheckErrorCode(EmaiPop3Connect(mObject, inMailServer, inPort, inOptions)); 00558 }
Establishes connection to the server.
Definition at line 561 of file EmaiPOP3.hpp. References Emai::CheckErrorCode(), EmaiPop3ConnectEx(), and Emai::Object< EmaiPop3Session >::mObject. 00568 { 00569 CheckErrorCode(EmaiPop3ConnectEx(mObject, inMailServer, inPort, inProxyInfo, inUserData, inOptions)); 00570 }
Disconnects from the server.
Definition at line 573 of file EmaiPOP3.hpp. References Emai::CheckErrorCode(), EmaiPop3Disconnect(), and Emai::Object< EmaiPop3Session >::mObject. 00576 { 00577 CheckErrorCode(EmaiPop3Disconnect(mObject, inOptions)); 00578 }
Authenticates at the server.
Definition at line 581 of file EmaiPOP3.hpp. References Emai::CheckErrorCode(), EmaiPop3Authenticate(), and Emai::Object< EmaiPop3Session >::mObject. 00586 { 00587 CheckErrorCode(EmaiPop3Authenticate(mObject, inAccount, 00588 inPassword, inOptions)); 00589 }
Retrieves the list of messages, stored on the server.
Definition at line 592 of file EmaiPOP3.hpp. References Emai::CheckErrorCode(), EmaiPop3RetrieveMessageList(), and Emai::Object< EmaiPop3Session >::mObject. 00596 { 00597 CheckErrorCode(EmaiPop3RetrieveMessageList(mObject, inMessageInfoList, 00598 inOptions)); 00599 }
Retrieves the message from the server.
Definition at line 602 of file EmaiPOP3.hpp. References Emai::CheckErrorCode(), EmaiPop3RetrieveMessage(), and Emai::Object< EmaiPop3Session >::mObject. 00606 { 00607 EmaiMessage message = NULL; 00608 CheckErrorCode(EmaiPop3RetrieveMessage(mObject, &message, 00609 inMessageNumber, inOptions)); 00610 return Message(message, false); 00611 }
Marks message at specified index on server as "deleted".
Definition at line 614 of file EmaiPOP3.hpp. References Emai::CheckErrorCode(), EmaiPop3DeleteMessage(), and Emai::Object< EmaiPop3Session >::mObject. 00618 { 00619 CheckErrorCode(EmaiPop3DeleteMessage(mObject, inMessageNumber, inOptions)); 00620 }
Unmarks all messages as "deleted" on the server.
Definition at line 623 of file EmaiPOP3.hpp. References Emai::CheckErrorCode(), EmaiPop3Reset(), and Emai::Object< EmaiPop3Session >::mObject. 00626 { 00627 CheckErrorCode(EmaiPop3Reset(mObject, inOptions)); 00628 }
Marks POP3 session to be cancelled ASAP.
Definition at line 631 of file EmaiPOP3.hpp. References Emai::CheckErrorCode(), EmaiPop3Cancel(), and Emai::Object< EmaiPop3Session >::mObject. 00634 { 00635 CheckErrorCode(EmaiPop3Cancel(mObject, inOptions)); 00636 }
Sens NOOP command to the POP3 server. Used to avoid timout disconnection, during inactivity period.
Definition at line 639 of file EmaiPOP3.hpp. References Emai::CheckErrorCode(), EmaiPop3Noop(), and Emai::Object< EmaiPop3Session >::mObject. 00642 { 00643 CheckErrorCode(EmaiPop3Noop(mObject, inOptions)); 00644 }
The documentation for this class was generated from the following file: |