Click or drag to resize
MimeKit

ApplicationPkcs7MimeCompressAsync(MimeEntity, CancellationToken) Method

Asynchronously compress the specified entity.

Namespace: MimeKit.Cryptography
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public static Task<ApplicationPkcs7Mime> CompressAsync(
	MimeEntity entity,
	CancellationToken cancellationToken = default
)

Parameters

entity  MimeEntity
The entity.
cancellationToken  CancellationToken  (Optional)
The cancellation token.

Return Value

TaskApplicationPkcs7Mime
The compressed entity.
Exceptions
ExceptionCondition
ArgumentNullExceptionentity is null.
ObjectDisposedExceptionentity has been disposed.
OperationCanceledException The operation was canceled via the cancellation token.
CmsException An error occurred in the cryptographic message syntax subsystem.
Remarks

Asynchronously compresses the specified entity using the default SecureMimeContext.

Caution note  Caution
Most mail clients, even among those that support S/MIME, do not support compression.
See Also