Click or drag to resize
MimeKit

ApplicationPkcs7MimeEncrypt(IEnumerableMailboxAddress, MimeEntity, CancellationToken) Method

Encrypt the specified entity.

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

Parameters

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

Return Value

ApplicationPkcs7Mime
The encrypted entity.
Exceptions
ExceptionCondition
ArgumentNullException

recipients is null.

-or-

entity is null.

ArgumentException Valid certificates could not be found for one or more of the recipients.
ObjectDisposedExceptionentity has been disposed.
OperationCanceledException The operation was canceled via the cancellation token.
CertificateNotFoundException A certificate could not be found for one or more of the recipients.
CmsException An error occurred in the cryptographic message syntax subsystem.
Remarks
Encrypts the entity to the specified recipients using the default SecureMimeContext.
See Also