Click or drag to resize
MimeKit

IMailFolderSetQuota Method

Set the quota limits for the folder.

Namespace: MailKit
Assembly: MailKit (in MailKit.dll) Version: 4.3.0
Syntax
C#
FolderQuota SetQuota(
	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

FolderQuota
The updated folder quota.
Remarks

Sets the quota limits for the folder.

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

See Also