Click or drag to resize
MimeKit

MailFolderCreate(String, SpecialFolder, CancellationToken) Method

Create a new subfolder with the given name.

Namespace: MailKit
Assembly: MailKit (in MailKit.dll) Version: 4.3.0
Syntax
C#
public virtual IMailFolder Create(
	string name,
	SpecialFolder specialUse,
	CancellationToken cancellationToken = default
)

Parameters

name  String
The name of the folder to create.
specialUse  SpecialFolder
The special use for the folder being created.
cancellationToken  CancellationToken  (Optional)
The cancellation token.

Return Value

IMailFolder
The created folder.

Implements

IMailFolderCreate(String, SpecialFolder, CancellationToken)
Exceptions
ExceptionCondition
ArgumentNullExceptionname is null.
ArgumentExceptionname is empty.
ObjectDisposedException The IMailStore has been disposed.
ServiceNotConnectedException The IMailStore is not connected.
ServiceNotAuthenticatedException The IMailStore is not authenticated.
InvalidOperationException The DirectorySeparator is nil, and thus child folders cannot be created.
NotSupportedException The MailService does not support the creation of special folders.
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
Creates a new subfolder with the given name.
See Also