VerificationOptionsAddTrustedCertificate Method (String) |
Adds a certificate to the store of trusted certificates inside this options object, by loading it from a file. This overload uses the e_default_trust CertificateTrustFlag, which matches Acrobat's behaviour, to determine the trust level of the certificate.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void AddTrustedCertificate(
string in_filepath
)
Public Sub AddTrustedCertificate (
in_filepath As String
)
public:
virtual void AddTrustedCertificate(
[InAttribute] String^ in_filepath
) sealed
function AddTrustedCertificate(in_filepath);
Parameters
- in_filepath
- Type: SystemString
a path to a file containing the data of an X.509 public-key certificate encoded in binary DER (Distinguished Encoding Rules) format, or in PEM (appropriate Privacy-Enhanced Mail header+Base64 encoded DER+appropriate footer) format
See Also