Click or drag to resize
MimeKit

SecureMimeContextVerify(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.3.0
Syntax
C#
public abstract 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 null.
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