Click or drag to resize

CertID Constructor (X509Certificate2, X509Certificate2)

Initializes a new instance of the CertID class using leaf and issuer certificates. This constructor do not check whether the certificate in the issuer parameter actually signed the certificate in the leafCert parameter.

Namespace:  PKI.OCSP
Assembly:  SysadminsLV.PKI (in SysadminsLV.PKI.dll) Version: 3.7.0.0 (3.7.0.0)
Syntax
public CertID(
	X509Certificate2 issuer,
	X509Certificate2 leafCert
)

Parameters

issuer
Type: System.Security.Cryptography.X509CertificatesX509Certificate2
An X509Certificate2 object that represents an issuer.
leafCert
Type: System.Security.Cryptography.X509CertificatesX509Certificate2
An X509Certificate2 object that represents certificate to verify.
Exceptions
ExceptionCondition
ArgumentNullException Either, a issuer and/or leafCert parameter is null.
See Also