SmimeResultEnvelopedCmsResult Property
Gets EnvelopedCms reference produced by Decrypt(MailMessage) or DecryptAndVerify(MailMessage, MessageVerificationFlags) methods if SetEnvelopedCmsOnDecrypt was true.

Property Value

Type: EnvelopedCms
A reference to EnvelopedCms object if SetEnvelopedCmsOnDecrypt was true and message decryption 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 EnvelopedCms EnvelopedCmsResult { get; }

Property Value

Type: EnvelopedCms
Remarks
EnvelopedCms object lets you examine many properties of an S/MIME encrypted message. For instance, smimeResult.EnvelopedCmsResult.ContentEncryptionAlgorithm (C# syntax) gives you the algorithm the message was encrypted with.
See Also