Logs user in using AUTHENTICATE DIGEST-MD5 command. This method does NOT send the password in clear text. You can check which methods remote server supports using SupportedAuthenticationMethods()()()() method.

Namespace: Limilabs.Client.IMAP
Assembly: Mail (in Mail.dll) Version: 3.0.12102.1426

Syntax

C#
public void LoginDIGEST(
	string user,
	string password
)
Visual Basic
Public Sub LoginDIGEST ( _
	user As String, _
	password As String _
)
Visual C++
public:
void LoginDIGEST(
	String^ user, 
	String^ password
)

Parameters

user
Type: System..::..String
User's login.
password
Type: System..::..String
User's password.

Remarks

This command is unnecessary if you are using SSL, use Login(String, String) method instead.

Exceptions

ExceptionCondition
Limilabs.Client..::..ServerExceptionThrows ServerException on negative response.

See Also