Click or drag to resize
MimeKit

WindowsSecureMimeContextEncryptAsync(CmsRecipientCollection, Stream, CancellationToken) Method

Asynchronously encrypts the specified content for the specified recipients.

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

Parameters

recipients  CmsRecipientCollection
The recipients.
content  Stream
The content.
cancellationToken  CancellationToken  (Optional)
The cancellation token.

Return Value

TaskApplicationPkcs7Mime
A new ApplicationPkcs7Mime instance containing the encrypted content.
Exceptions
ExceptionCondition
ArgumentNullException

recipients is null.

-or-

content is null.

OperationCanceledException The operation was canceled via the cancellation token.
CryptographicException An error occurred in the cryptographic message syntax subsystem.
Remarks
Asynchronously encrypts the specified content for the specified recipients.
See Also