Click or drag to resize
MimeKit

GnuPGContextExportAsync(IEnumerableMailboxAddress, CancellationToken) Method

Asynchronously export the public keys for the specified mailboxes.

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

Parameters

mailboxes  IEnumerableMailboxAddress
The mailboxes associated with the public keys to export.
cancellationToken  CancellationToken  (Optional)
The cancellation token.

Return Value

TaskMimePart
A new MimePart instance containing the exported public keys.
Exceptions
ExceptionCondition
ArgumentNullExceptionmailboxes is null.
ArgumentExceptionmailboxes was empty.
OperationCanceledException The operation was canceled via the cancellation token.
Remarks
Asynchronously exports the public keys for the specified mailboxes.
See Also