 | Pop3LoginAPOP Method |
Logs user in using APOP command. This method does NOT send the password in clear text.
Namespace: Limilabs.Client.POP3Assembly: Mail (in Mail.dll) Version: 3.0.26106.1555
Syntaxpublic void LoginAPOP(
string user,
string password
)
Public Sub LoginAPOP (
user As String,
password As String
)
public:
void LoginAPOP(
String^ user,
String^ password
)
member LoginAPOP :
user : string *
password : string -> unit Parameters
- user String
- User's login.
- password String
- User's password.
Exceptions
Remarks
APOP is optional command and a POP3 server does NOT need to support it.
A POP3 server which implements the APOP command will include a timestamp in its banner greeting.
Check
HasTimeStamp property in order to know if server included the timestamp.
Some servers include timestamp, but do NOT support APOP command.
See Also