Click or drag to resize
MimeKit

ImapFolderGetSubfolder Method

Get the specified subfolder.

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

Parameters

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

Return Value

IMailFolder
The subfolder.

Implements

IMailFolderGetSubfolder(String, CancellationToken)
IMailFolderGetSubfolder(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