SmimeResult Class
Provides access to the decrypted message, signature verification status and other values returned by the methods of Smime class.
Inheritance Hierarchy
SystemObject
  MailBee.SecuritySmimeResult

Namespace: MailBee.Security
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public class SmimeResult

The SmimeResult type exposes the following members.

Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Properties
  NameDescription
Public propertyDecryptedMessage
Gets a reference to the decrypted message.
Public propertyDecryptionCertificate
Gets a reference to the certificate which was used to decrypt the message.
Public propertyEnvelopedCmsResult
Gets EnvelopedCms reference produced by Decrypt(MailMessage) or DecryptAndVerify(MailMessage, MessageVerificationFlags) methods if SetEnvelopedCmsOnDecrypt was true.

Field Value

Type: 
A reference to EnvelopedCms object if SetEnvelopedCmsOnDecrypt was true and message decryption occurred, or a null reference (Nothing in Visual Basic) otherwise.
Public propertySignatureCertificate
Gets a reference to the certificate extracted from the message signature.
Public propertySignedCmsResult
Gets SignedCms reference produced by Verify(MailMessage, MessageVerificationFlags, CertificateStore) or DecryptAndVerify(MailMessage, MessageVerificationFlags) methods if SetSignedCmsOnVerify was true.

Field Value

Type: 
A reference to SignedCms object if SetSignedCmsOnVerify was true and signature verification occurred, or a null reference (Nothing in Visual Basic) otherwise.
Public propertyVerificationResult
Gets a set of flags which indicate reasons to treat the message signature as invalid.
Top
Remarks
Examples
See Also