Click or drag to resize
MimeKit

SecureMimeContextImportAsync(Stream, CancellationToken) Method

Asynchronously import certificates (as from a certs-only application/pkcs-mime part) from the specified stream.

Namespace: MimeKit.Cryptography
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public override Task ImportAsync(
	Stream stream,
	CancellationToken cancellationToken = default
)

Parameters

stream  Stream
The raw key data.
cancellationToken  CancellationToken  (Optional)
The cancellation token.

Return Value

Task
An asynchronous task context.
Exceptions
ExceptionCondition
ArgumentNullExceptionstream is null.
OperationCanceledException The operation was cancelled via the cancellation token.
CmsException An error occurred in the cryptographic message syntax subsystem.
Remarks
Asynchronously imports certificates (as from a certs-only application/pkcs-mime part) from the specified stream.
See Also