Click or drag to resize
MimeKit

ImapFolderAddAccessRights Method

Add access rights for the specified identity.

Namespace: MailKit.Net.Imap
Assembly: MailKit (in MailKit.dll) Version: 4.3.0
Syntax
C#
public override void AddAccessRights(
	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

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

name is null.

-or-

rights is null.

ArgumentException No rights were specified.
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
Adds the given access rights for the specified identity.
See Also