 | ImapProxyAuthAsync Method |
Sends PROXYAUTH command. Allows an authorized administrator to proxy into any user's mailbox.
PROXYAUTH is not a standard IMAP command and your server may reject it.
You can try
LoginPLAIN(String, String, String) in such case.
Namespace: Limilabs.Client.IMAPAssembly: Mail (in Mail.dll) Version: 3.0.26106.1555
Syntaxpublic Task ProxyAuthAsync(
string user,
CancellationToken cancel = default
)
Public Function ProxyAuthAsync (
user As String,
Optional cancel As CancellationToken = Nothing
) As Task
public:
Task^ ProxyAuthAsync(
String^ user,
CancellationToken cancel = CancellationToken()
)
member ProxyAuthAsync :
user : string *
?cancel : CancellationToken
(* Defaults:
let _cancel = defaultArg cancel new CancellationToken()
*)
-> Task Parameters
- user String
- User mailbox to access.
- 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 PROXYAUTH operation.
See Also