ImapClientRemoveMessageFlagsAsync Method (IEnumerableImapMessageInfo, 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(
IEnumerable<ImapMessageInfo> messageInfoSet,
ImapMessageFlags flags,
long modificationSequence
)
Public Function RemoveMessageFlagsAsync (
messageInfoSet As IEnumerable(Of ImapMessageInfo),
flags As ImapMessageFlags,
modificationSequence As Long
) As Task
public:
Task^ RemoveMessageFlagsAsync(
IEnumerable<ImapMessageInfo^>^ messageInfoSet,
ImapMessageFlags^ flags,
long long modificationSequence
)
member RemoveMessageFlagsAsync :
messageInfoSet : IEnumerable<ImapMessageInfo> *
flags : ImapMessageFlags *
modificationSequence : int64 -> Task
Parameters
- messageInfoSet
- Type: System.Collections.GenericIEnumerableImapMessageInfo
The set of ImapMessageInfo - 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