| MimeSignedCheckSignature Method |
Verifies the digital signatures on the signed CMS/PKCS #7 message and, optionally, validates the signers' certificates.
Namespace:
Limilabs.Mail.MIME
Assembly:
Mail (in Mail.dll) Version: 3.0.23341.1754
Syntax public void CheckSignature(
bool verifySignatureOnly
)
Public Sub CheckSignature (
verifySignatureOnly As Boolean
)
public:
void CheckSignature(
bool verifySignatureOnly
)
member CheckSignature :
verifySignatureOnly : bool -> unit
Parameters
- verifySignatureOnly
- Type: SystemBoolean
verifySignatureOnly: A System.Boolean value that specifies whether only the digital signatures are verified
without the signers' certificates being validated.
If verifySignatureOnly is true, only the digital signatures are verified.
If it is false, the digital signatures are verified, the signers' certificates are validated,
and the purposes of the certificates are validated.
The purposes of a certificate are considered valid if the certificate has no key usage or
if the key usage supports digital signatures or non-repudiation.
See Also