OCSPSingleRequest(X509Certificate2, X509Certificate2, Boolean) Constructor

Initializes a new instance of OCSPSingleRequest class from a certificate to include in the request, certificate issuer and a value that indicates whether to include X509ServiceLocatorExtension extension.

Definition

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

Parameters

issuer  X509Certificate2
An X509Certificate2 object that represents a certificate which is an issuer of the certificate in the leafCert parameter.
leafCert  X509Certificate2
An X509Certificate2 object that represents a certificate to include in the request.
serviceLocator  Boolean
Indicates whether to include X509ServiceLocatorExtension extension.

Remarks

Service Locator extension is used only when target OCSP responder is configured as a OCSP-Proxy and is capable to forward original request to a authoritative responder. Normally this extension SHOULD NOT be used.

See Also