Click or drag to resize
MimeKit

OpenPgpContextExport(PgpPublicKeyRingBundle, Stream, Boolean, CancellationToken) Method

Export the public keyring bundle.

Namespace: MimeKit.Cryptography
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public void Export(
	PgpPublicKeyRingBundle keys,
	Stream stream,
	bool armor,
	CancellationToken cancellationToken = default
)

Parameters

keys  PgpPublicKeyRingBundle
The public keyring bundle to export.
stream  Stream
The output stream.
armor  Boolean
true if the output should be armored; otherwise, false.
cancellationToken  CancellationToken  (Optional)
The cancellation token.
Exceptions
ExceptionCondition
ArgumentNullException

keys is null.

-or-

stream is null.

IOException An I/O error occurred.
OperationCanceledException The operation was canceled via the cancellation token.
Remarks
Exports the public keyring bundle.
See Also