ImapClientDeleteMessageAsync Method (IConnection, String, CancellationToken) |
Marks a message with the specified sequence number as deleted
Namespace:
Aspose.Email.Clients.Imap
Assembly:
Aspose.Email (in Aspose.Email.dll) Version: 22.4
Syntaxpublic Task DeleteMessageAsync(
IConnection connection,
string uniqueId,
CancellationToken token
)
Public Function DeleteMessageAsync (
connection As IConnection,
uniqueId As String,
token As CancellationToken
) As Task
public:
Task^ DeleteMessageAsync(
IConnection^ connection,
String^ uniqueId,
CancellationToken token
)
member DeleteMessageAsync :
connection : IConnection *
uniqueId : string *
token : CancellationToken -> Task
Parameters
- connection
- Type: Aspose.Email.ClientsIConnection
Connection to a server - uniqueId
- Type: SystemString
The uid of the message - token
- Type: System.ThreadingCancellationToken
Propagates notification that operations should be canceled.
Return Value
Type:
TaskTask object, with delegate for this operation
See Also