 | ImapLoginDIGEST(String, String, String) Method |
Logs user in using AUTHENTICATE DIGEST-MD5 command. This method does NOT send the password in clear text.
You can check which authentication methods remote server supports using
Capabilities and then
AuthenticationMethods method.
Namespace: Limilabs.Client.IMAPAssembly: Mail (in Mail.dll) Version: 3.0.26106.1555
Syntaxpublic void LoginDIGEST(
string user,
string password,
string uri
)
Public Sub LoginDIGEST (
user As String,
password As String,
uri As String
)
public:
void LoginDIGEST(
String^ user,
String^ password,
String^ uri
)
member LoginDIGEST :
user : string *
password : string *
uri : string -> unit Parameters
- user String
- User's login.
- password String
- User's password.
- uri String
- Host and service name (host ["/" service-name]) part of digest-uri parameter, if null realm is used.
Exceptions
See Also