Click or drag to resize

Pop3LoginAPOPAsync Method

Logs user in using APOP command. This method does NOT send the password in clear text.

Namespace:  Limilabs.Client.POP3
Assembly:  Mail (in Mail.dll) Version: 3.0.23341.1754
Syntax
public Task LoginAPOPAsync(
	string user,
	string password
)

Parameters

user
Type: SystemString
User's login.
password
Type: SystemString
User's password.

Return Value

Type: Task
A task that represents the asynchronous login operation.
Exceptions
ExceptionCondition
Pop3ResponseExceptionThrows Pop3ResponseException on error response.
ExceptionWhen HasTimeStamp is false.
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