 | Pop3LoginDIGESTAsync(String, String, String, CancellationToken) Method |
Logs user in using AUTH DIGEST-MD5 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 Task LoginDIGESTAsync(
string user,
string password,
string uri,
CancellationToken cancel = default
)
Public Function LoginDIGESTAsync (
user As String,
password As String,
uri As String,
Optional cancel As CancellationToken = Nothing
) As Task
public:
Task^ LoginDIGESTAsync(
String^ user,
String^ password,
String^ uri,
CancellationToken cancel = CancellationToken()
)
member LoginDIGESTAsync :
user : string *
password : string *
uri : string *
?cancel : CancellationToken
(* Defaults:
let _cancel = defaultArg cancel new CancellationToken()
*)
-> Task 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.
- cancel CancellationToken (Optional)
- A cancellation token that can be used to signal the asynchronous operation should be canceled.
Return Value
TaskA task that represents the asynchronous login operation.
Exceptions
See Also