ImapClientDeleteMessagesAsync Method (IEnumerableString, Boolean, CancellationToken) |
Marks a message with the specified unique identifier as deleted and commits the deletions if user specifies this.
This method works only if server supports UIDPLUS extension. Please, read more https://tools.ietf.org/html/rfc4315
Namespace:
Aspose.Email.Clients.Imap
Assembly:
Aspose.Email (in Aspose.Email.dll) Version: 22.4
Syntaxpublic Task DeleteMessagesAsync(
IEnumerable<string> uidSet,
bool commitNow,
CancellationToken token
)
Public Function DeleteMessagesAsync (
uidSet As IEnumerable(Of String),
commitNow As Boolean,
token As CancellationToken
) As Task
public:
Task^ DeleteMessagesAsync(
IEnumerable<String^>^ uidSet,
bool commitNow,
CancellationToken token
)
member DeleteMessagesAsync :
uidSet : IEnumerable<string> *
commitNow : bool *
token : CancellationToken -> Task
Parameters
- uidSet
- Type: System.Collections.GenericIEnumerableString
The set of UID for messages - commitNow
- Type: SystemBoolean
Defines whether message must be commited now. Please, read more https://tools.ietf.org/html/rfc4315 - token
- Type: System.ThreadingCancellationToken
Propagates notification that operations should be canceled.
Return Value
Type:
TaskTask object, with delegate for this operation
See Also