Click or drag to resize
MimeKit

ImapFolderSetAccessRightsAsync Method

Asynchronously get the access rights for the specified identity.

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

Parameters

name  String
The identity name.
rights  AccessRights
The access rights.
cancellationToken  CancellationToken  (Optional)
The cancellation token.

Return Value

Task
An awaitable task.

Implements

IMailFolderSetAccessRightsAsync(String, AccessRights, CancellationToken)
IMailFolderSetAccessRightsAsync(String, AccessRights, CancellationToken)
Exceptions
ExceptionCondition
ArgumentNullException

name is null.

-or-

rights is null.

ObjectDisposedException The ImapClient has been disposed.
ServiceNotConnectedException The ImapClient is not connected.
ServiceNotAuthenticatedException The ImapClient is not authenticated.
NotSupportedException The IMAP server does not support the ACL extension.
OperationCanceledException The operation was canceled via the cancellation token.
IOException An I/O error occurred.
ImapProtocolException The server's response contained unexpected tokens.
ImapCommandException The command failed.
Remarks
Sets the access rights for the specified identity.
See Also