VerificationOptionsAddTrustedCertificate Method (Byte, UInt64) |
Adds a certificate to the store of trusted certificates inside this options object.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void AddTrustedCertificate(
byte[] in_certificate_data,
ulong in_trust_flags
)
Public Sub AddTrustedCertificate (
in_certificate_data As Byte(),
in_trust_flags As ULong
)
public:
virtual void AddTrustedCertificate(
[InAttribute] array<unsigned char>^ in_certificate_data,
[InAttribute] unsigned long long in_trust_flags
) sealed
function AddTrustedCertificate(in_certificate_data, in_trust_flags);
Parameters
- in_certificate_data
- Type: SystemByte
a buffer consisting of 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 - in_trust_flags
- Type: SystemUInt64
a combination of trust flags (see enum CertificateTrustFlag)
See Also