Click or drag to resize
MimeKit

CryptographyContextVerifyAsync Method

Asynchronously verify the specified content using the detached signatureData.

Namespace: MimeKit.Cryptography
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public abstract Task<DigitalSignatureCollection> VerifyAsync(
	Stream content,
	Stream signatureData,
	CancellationToken cancellationToken = default
)

Parameters

content  Stream
The content.
signatureData  Stream
The signature data.
cancellationToken  CancellationToken  (Optional)
The cancellation token.

Return Value

TaskDigitalSignatureCollection
A list of digital signatures.
Exceptions
ExceptionCondition
ArgumentNullException

content is null.

-or-

signatureData is null.

OperationCanceledException The operation was canceled via the cancellation token.
Remarks
Verifies the specified content using the detached signatureData.
See Also