Click or drag to resize
MimeKit

ApplicationPkcs7MimeEncryptAsync(CmsRecipientCollection, MimeEntity, CancellationToken) Method

Asynchronously encrypt the specified entity.

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

Parameters

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

Return Value

TaskApplicationPkcs7Mime
The encrypted entity.
Exceptions
ExceptionCondition
ArgumentNullException

recipients is null.

-or-

entity 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 encrypts the entity to the specified recipients using the default SecureMimeContext.
See Also