 | Pop3GetUIDAsync(CancellationToken) Method |
Sends UIDL command to the pop3 server. Returns a key value collection.
Keys are message numbers (starting from 1), value is a unique-id of the message.
Namespace: Limilabs.Client.POP3Assembly: Mail (in Mail.dll) Version: 3.0.26106.1555
Syntaxpublic Task<Dictionary<long, string>> GetUIDAsync(
CancellationToken cancel = default
)
Public Function GetUIDAsync (
Optional cancel As CancellationToken = Nothing
) As Task(Of Dictionary(Of Long, String))
public:
Task<Dictionary<long long, String^>^>^ GetUIDAsync(
CancellationToken cancel = CancellationToken()
)
member GetUIDAsync :
?cancel : CancellationToken
(* Defaults:
let _cancel = defaultArg cancel new CancellationToken()
*)
-> Task<Dictionary<int64, string>> Parameters
- cancel CancellationToken (Optional)
- A cancellation token that can be used to signal the asynchronous operation should be canceled.
Return Value
TaskDictionaryInt64,
StringKey value collection, with message number as key and unique-id as a value
Exceptions
See Also