Click or drag to resize
MimeKit

CryptographyContextDecryptAsync Method

Asynchronously decrypt the specified encryptedData.

Namespace: MimeKit.Cryptography
Assembly: MimeKit (in MimeKit.dll) Version: 4.10.0
Syntax
C#
public abstract Task<MimeEntity> DecryptAsync(
	Stream encryptedData,
	CancellationToken cancellationToken = default
)

Parameters

encryptedData  Stream
The encrypted data.
cancellationToken  CancellationToken  (Optional)
The cancellation token.

Return Value

TaskMimeEntity
The decrypted MimeEntity.

Implements

ICryptographyContextDecryptAsync(Stream, CancellationToken)
Exceptions
ExceptionCondition
ArgumentNullExceptionencryptedData is .
OperationCanceledException The operation was cancelled via the cancellation token.
Remarks
Asynchronously decrypts the specified encryptedData.
See Also