Signature.Verify

Verify()

Verify the document regarding this signature and return true if document is valid or otherwise false.

public bool Verify()

Return Value

true if document is valid.

See Also


Verify(ValidationOptions, out ValidationResult)

Verify the document regarding this signature and return true if document is valid or otherwise false.

public bool Verify(ValidationOptions options, out ValidationResult validationResult)
ParameterTypeDescription
optionsValidationOptionsThe verification options.
validationResultValidationResult&The certificate validation result.

Return Value

true if document is valid.

See Also


Verify(X509Certificate2, ValidationOptions, out ValidationResult)

Verify the document regarding this signature and return true if document is valid or otherwise false. Verification is performed using the external public key certificate.

public bool Verify(X509Certificate2 publicKeyCertificate, ValidationOptions options, 
    out ValidationResult validationResult)
ParameterTypeDescription
publicKeyCertificateX509Certificate2The public key certificate for verification.
optionsValidationOptionsThe verification options.
validationResultValidationResult&The certificate validation result.

Return Value

true if document is valid.

See Also