Click or drag to resize
MimeKit

ImapFolderSetAccessRights Method

Set the access rights for the specified identity.

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

Parameters

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

Implements

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