Click or drag to resize
MimeKit

ApplicationPkcs7MimeVerify(MimeEntity, CancellationToken) Method

Verifies the signed-data and returns the unencapsulated MimeEntity.

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

Parameters

entity  MimeEntity
The unencapsulated entity.
cancellationToken  CancellationToken  (Optional)
The cancellation token.

Return Value

DigitalSignatureCollection
The list of digital signatures.
Exceptions
ExceptionCondition
InvalidOperationException The "smime-type" parameter on the Content-Type header is not "signed-data".
ObjectDisposedException The ApplicationPkcs7Mime has been disposed.
OperationCanceledException The operation was canceled via the cancellation token.
CmsException An error occurred in the cryptographic message syntax subsystem.
Remarks
Verifies the signed-data using the default SecureMimeContext and returns the unencapsulated MimeEntity.
See Also