ImapClientRemoveMessageFlagsAsync Method (String, String, ImapMessageFlags, Int64) |
Removes the flags of the message
Namespace:
Aspose.Email.Clients.Imap
Assembly:
Aspose.Email (in Aspose.Email.dll) Version: 22.4
Syntaxpublic Task RemoveMessageFlagsAsync(
string startUid,
string endUid,
ImapMessageFlags flags,
long modificationSequence
)
Public Function RemoveMessageFlagsAsync (
startUid As String,
endUid As String,
flags As ImapMessageFlags,
modificationSequence As Long
) As Task
public:
Task^ RemoveMessageFlagsAsync(
String^ startUid,
String^ endUid,
ImapMessageFlags^ flags,
long long modificationSequence
)
member RemoveMessageFlagsAsync :
startUid : string *
endUid : string *
flags : ImapMessageFlags *
modificationSequence : int64 -> Task
Parameters
- startUid
- Type: SystemString
The starting UID of a message list - endUid
- Type: SystemString
The ending UID of a message list - flags
- Type: Aspose.Email.Clients.ImapImapMessageFlags
The flags to be changed - modificationSequence
- Type: SystemInt64
Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162
Return Value
Type:
TaskTask object, with delegate for this operation
See Also