Click or drag to resize
MimeKit

MailStoreGetFolderAsync Method

Asynchronously get the folder for the specified path.

Namespace: MailKit
Assembly: MailKit (in MailKit.dll) Version: 4.3.0
Syntax
C#
public abstract Task<IMailFolder> GetFolderAsync(
	string path,
	CancellationToken cancellationToken = default
)

Parameters

path  String
The folder path.
cancellationToken  CancellationToken  (Optional)
The cancellation token.

Return Value

TaskIMailFolder
The folder.

Implements

IMailStoreGetFolderAsync(String, CancellationToken)
Exceptions
ExceptionCondition
ArgumentNullExceptionpath is null.
ObjectDisposedException The MailStore has been disposed.
ServiceNotConnectedException The MailStore is not connected.
ServiceNotAuthenticatedException The MailStore is not authenticated.
OperationCanceledException The operation was canceled via the cancellation token.
FolderNotFoundException The folder could not be found.
IOException An I/O error occurred.
ProtocolException A protocol error occurred.
CommandException The command failed.
Remarks
Asynchronously gets the folder for the specified path.
See Also