Click or drag to resize
MimeKit

ISecureMimeContextVerify(Stream, MimeEntity, CancellationToken) Method

Verify the digital signatures of the specified signed data and extract the original content.

Namespace: MimeKit.Cryptography
Assembly: MimeKit (in MimeKit.dll) Version: 4.10.0
Syntax
C#
DigitalSignatureCollection Verify(
	Stream signedData,
	out MimeEntity entity,
	CancellationToken cancellationToken = default
)

Parameters

signedData  Stream
The signed data.
entity  MimeEntity
The extracted MIME entity.
cancellationToken  CancellationToken  (Optional)
The cancellation token.

Return Value

DigitalSignatureCollection
The list of digital signatures.
Exceptions
ExceptionCondition
ArgumentNullExceptionsignedData is .
FormatException The extracted content could not be parsed as a MIME entity.
OperationCanceledException The operation was cancelled via the cancellation token.
Remarks
Verifies the digital signatures of the specified signed data and extracts the original content.
See Also