CertID(X509Certificate2, X509Certificate2) Constructor

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.

Definition

Namespace: SysadminsLV.PKI.OcspClient
Assembly: SysadminsLV.PKI.OcspClient (in SysadminsLV.PKI.OcspClient.dll) Version: 4.0.1
C#
public CertID(
	X509Certificate2 issuer,
	X509Certificate2 leafCert
)

Parameters

issuer  X509Certificate2
An X509Certificate2 object that represents an issuer.
leafCert  X509Certificate2
An X509Certificate2 object that represents certificate to verify.

Exceptions

ArgumentNullException Either, a issuer and/or leafCert parameter is null.

See Also