Click or drag to resize
MimeKit

IMailFolderExtensionsAddFlagsAsync(IMailFolder, IListUniqueId, UInt64, MessageFlags, Boolean, CancellationToken) Method

Asynchronously add a set of flags to the specified messages only if their mod-sequence value is less than the specified value.

Namespace: MailKit
Assembly: MailKit (in MailKit.dll) Version: 4.3.0
Syntax
C#
public static Task<IList<UniqueId>> AddFlagsAsync(
	this IMailFolder folder,
	IList<UniqueId> uids,
	ulong modseq,
	MessageFlags flags,
	bool silent,
	CancellationToken cancellationToken = default
)

Parameters

folder  IMailFolder
The folder.
uids  IListUniqueId
The UIDs of the messages.
modseq  UInt64
The mod-sequence value.
flags  MessageFlags
The message flags to add.
silent  Boolean
If set to true, no MessageFlagsChanged events will be emitted.
cancellationToken  CancellationToken  (Optional)
The cancellation token.

Return Value

TaskIListUniqueId
The unique IDs of the messages that were not updated.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IMailFolder. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Exceptions
ExceptionCondition
ArgumentNullExceptionuids is null.
ArgumentException

One or more of the uids is invalid.

-or-

No flags were specified.

ObjectDisposedException The IMailStore has been disposed.
ServiceNotConnectedException The IMailStore is not connected.
ServiceNotAuthenticatedException The IMailStore is not authenticated.
FolderNotOpenException The folder is not currently open in read-write mode.
NotSupportedException The MailFolder does not support mod-sequences.
OperationCanceledException The operation was canceled via the cancellation token.
IOException An I/O error occurred.
ProtocolException The server's response contained unexpected tokens.
CommandException The command failed.
Remarks
Asynchronously adds a set of flags to the specified messages only if their mod-sequence value is less than the specified value.
See Also