Click or drag to resize
MimeKit

IMailFolderExtensionsRemoveLabels(IMailFolder, IListInt32, IListString, Boolean, CancellationToken) Method

Remove a set of labels from the specified messages.

Namespace: MailKit
Assembly: MailKit (in MailKit.dll) Version: 4.3.0
Syntax
C#
public static void RemoveLabels(
	this IMailFolder folder,
	IList<int> indexes,
	IList<string> labels,
	bool silent,
	CancellationToken cancellationToken = default
)

Parameters

folder  IMailFolder
The folder.
indexes  IListInt32
The indexes of the messages.
labels  IListString
The labels to remove.
silent  Boolean
If set to true, no MessageLabelsChanged events will be emitted.
cancellationToken  CancellationToken  (Optional)
The cancellation token.

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
ArgumentNullException

indexes is null.

-or-

labels is null.

ArgumentException

One or more of the indexes is invalid.

-or-

No labels 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.
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
Removes a set of labels from the specified messages.
See Also