CertPolicyBase.VerifyRequest(CertServerModule, PolicyModuleAction, Boolean) Method

The VerifyRequest method notifies the policy module that a new request has entered the system. The policy module can then interact with that request by passing Context as a parameter when retrieving or setting properties on the request or associated certificate.

The returned disposition value indicates whether the request has been accepted, denied, or has been sent to the administration queue for later evaluation.

Definition

Namespace: ADCS.CertMod.Managed.Policy
Assembly: ADCS.CertMod.Managed (in ADCS.CertMod.Managed.dll) Version: 2.0.0.0 (2.0.0.0)
C#
protected abstract PolicyModuleAction VerifyRequest(
	CertServerModule certServer,
	PolicyModuleAction nativeResult,
	bool bNewRequest
)

Parameters

certServer  CertServerModule
An instance of CertServerModule class that allows to access request details.
nativeResult  PolicyModuleAction
Native policy module result for current request.
bNewRequest  Boolean
A boolean that indicates if request is new request, or renewal request.

Return Value

PolicyModuleAction
A disposition value.

See Also