SmimeResultSignedCmsResult Property
Gets SignedCms reference produced by Verify(MailMessage, MessageVerificationFlags, CertificateStore) or DecryptAndVerify(MailMessage, MessageVerificationFlags) methods if SetSignedCmsOnVerify was true.

Property Value

Type: SignedCms
A reference to SignedCms object if SetSignedCmsOnVerify was true and signature verification occurred, or a null reference (Nothing in Visual Basic) otherwise.

Namespace: MailBee.Security
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public SignedCms SignedCmsResult { get; }

Property Value

Type: SignedCms
Remarks
SignedCms object lets you examine many properties of an S/MIME signature. For instance, smimeResult.SignedCmsResult.SignerInfos[0].DigestAlgorithm (C# syntax) gives you the algorithm the message was signed with.
See Also