 | Pop3GetUIDAsync(Int64, CancellationToken) Method |
Sends UIDL command to the pop3 server. Returns unique-id for that message.
Namespace: Limilabs.Client.POP3Assembly: Mail (in Mail.dll) Version: 3.0.26106.1555
Syntaxpublic Task<string> GetUIDAsync(
long messageNumber,
CancellationToken cancel = default
)
Public Function GetUIDAsync (
messageNumber As Long,
Optional cancel As CancellationToken = Nothing
) As Task(Of String)
public:
Task<String^>^ GetUIDAsync(
long long messageNumber,
CancellationToken cancel = CancellationToken()
)
member GetUIDAsync :
messageNumber : int64 *
?cancel : CancellationToken
(* Defaults:
let _cancel = defaultArg cancel new CancellationToken()
*)
-> Task<string> Parameters
- messageNumber Int64
- Message number
- cancel CancellationToken (Optional)
- A cancellation token that can be used to signal the asynchronous operation should be canceled.
Return Value
TaskStringUnique-id for specified email message
Exceptions
See Also