| IMailFolderSetQuotaAsync Method |
Asynchronously set the quota limits for the folder.
Namespace: MailKitAssembly: MailKit (in MailKit.dll) Version: 4.7.1
Syntax 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
TaskFolderQuotaThe 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