Click or drag to resize
MimeKit

WindowsSecureMimeContextExport Method

Exports the certificates for the specified mailboxes.

Namespace: MimeKit.Cryptography
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public override MimePart Export(
	IEnumerable<MailboxAddress> mailboxes,
	CancellationToken cancellationToken = default
)

Parameters

mailboxes  IEnumerableMailboxAddress
The mailboxes.
cancellationToken  CancellationToken  (Optional)
The cancellation token.

Return Value

MimePart
A new ApplicationPkcs7Mime instance containing the exported keys.
Exceptions
ExceptionCondition
ArgumentNullExceptionmailboxes is null.
ArgumentException No mailboxes were specified.
OperationCanceledException The operation was cancelled via the cancellation token.
CertificateNotFoundException A certificate for one or more of the mailboxes could not be found.
CryptographicException An error occurred in the cryptographic message syntax subsystem.
Remarks
Exports the certificates for the specified mailboxes.
See Also