Click or drag to resize
MimeKit

IMailFolderSetQuotaAsync Method

Asynchronously set the quota limits for the folder.

Namespace: MailKit
Assembly: MailKit (in MailKit.dll) Version: 4.3.0
Syntax
C#
Task<FolderQuota> SetQuotaAsync(
	uint? messageLimit,
	uint? storageLimit,
	CancellationToken cancellationToken = default
)

Parameters

messageLimit  NullableUInt32
If not null, sets the maximum number of messages to allow.
storageLimit  NullableUInt32
If not null, sets the maximum storage size (in kilobytes).
cancellationToken  CancellationToken  (Optional)
The cancellation token.

Return Value

TaskFolderQuota
The updated folder quota.
Remarks

Asynchronously sets the quota limits for the folder.

To determine if a quotas are supported, check the SupportsQuotas property.

See Also