ICertPolicy2VerifyRequest 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.
Namespace: ADCS.CertMod.Managed.PolicyAssembly: ADCS.CertMod.Managed (in ADCS.CertMod.Managed.dll) Version: 2.0.0.0 (2.0.0.0)
PolicyModuleAction VerifyRequest(
string strConfig,
int Context,
int bNewRequest,
int Flags
)
Function VerifyRequest (
strConfig As String,
Context As Integer,
bNewRequest As Integer,
Flags As Integer
) As PolicyModuleAction
PolicyModuleAction VerifyRequest(
[InAttribute] String^ strConfig,
[InAttribute] int Context,
[InAttribute] int bNewRequest,
[InAttribute] int Flags
)
abstract VerifyRequest :
strConfig : string *
Context : int *
bNewRequest : int *
Flags : int -> PolicyModuleAction
- strConfig String
-
Represents the name of the certification authority, as entered during Certificate Services setup.
- Context Int32
-
Identifies the request and associated certificate under construction.
The certificate server passes the context to this method.
- bNewRequest Int32
-
If set to 1, specifies that the request is new. If set to 0, the request is being resubmitted to the
policy module as a result of an ICertAdmin::ResubmitRequest call. A value of FALSE can be used to
indicate that the administrator wants the request to be issued or that request properties set by the
administrator should be examined.
- Flags Int32
- This parameter is reserved and must be set to zero.
PolicyModuleActionA disposition value.
ICertPolicyVerifyRequest(String, Int32, Int32, Int32)