Click or drag to resize
MimeKit

ImapFolderGetSubfolderAsync Method

Asynchronously get the specified subfolder.

Namespace: MailKit.Net.Imap
Assembly: MailKit (in MailKit.dll) Version: 4.3.0
Syntax
C#
public override Task<IMailFolder> GetSubfolderAsync(
	string name,
	CancellationToken cancellationToken = default
)

Parameters

name  String
The name of the subfolder.
cancellationToken  CancellationToken  (Optional)
The cancellation token.

Return Value

TaskIMailFolder
The subfolder.

Implements

IMailFolderGetSubfolderAsync(String, CancellationToken)
IMailFolderGetSubfolderAsync(String, CancellationToken)
Exceptions
ExceptionCondition
ArgumentNullExceptionname is null.
ArgumentExceptionname is either an empty string or contains the DirectorySeparator.
ObjectDisposedException The ImapClient has been disposed.
ServiceNotConnectedException The ImapClient is not connected.
ServiceNotAuthenticatedException The ImapClient is not authenticated.
OperationCanceledException The operation was canceled via the cancellation token.
IOException An I/O error occurred.
FolderNotFoundException The requested folder could not be found.
ImapProtocolException The server's response contained unexpected tokens.
ImapCommandException The server replied with a NO or BAD response.
Remarks
Gets the specified subfolder.
See Also