Click or drag to resize
SignDocVerificationResultverifyCertificateSimplified Method
Simplified verification of the certificate chain and revocation status of the signature's certificate. This function just returns a good / not good value according to policies defined by the arguments. It does not tell the caller what exactly is wrong. However, getErrorMessage() will return an error message if this function fails. Do not attempt to base decisions on that error message, please use verifyCertificateChain() instead of this function if you need details about the failure. This function fails for document time stamps, see getMethod() and verifyTimeStampCertificateSimplified().

Namespace:  de.softpro.signdocsdk
Assembly:  SPSignDoc_4.3_DotNetLib (in SPSignDoc_4.3_DotNetLib.dll) Version: 1.0.6773.37566
Syntax
C#
public ReturnCode verifyCertificateSimplified(
	SignDocVerificationParameters params
)

Parameters

params
Type: de.softpro.signdocsdkSignDocVerificationParameters
verification parameters or null for default parameters.

Return Value

Type: ReturnCode
#rc_ok if successful, #rc_not_verified if verification has failed, #rc_invalid_argument if the arguments are invalid.
See Also