protected abstract bool OnVerifyRequest(
byte[]? pkcs10Request,
X509Certificate2? signingCertificate,
string template,
string transactionID
)Protected MustOverride Function OnVerifyRequest (
pkcs10Request As Byte(),
signingCertificate As X509Certificate2,
template As String,
transactionID As String
) As Booleanprotected:
virtual bool OnVerifyRequest(
array<unsigned char>^ pkcs10Request,
X509Certificate2^ signingCertificate,
String^ template,
String^ transactionID
) abstractabstract OnVerifyRequest :
pkcs10Request : byte[] *
signingCertificate : X509Certificate2 *
template : string *
transactionID : string -> bool Note: challenge password is included in initial requests only (when signingCertificate parameter is null). Renewal requests do not contain challenge password, thus it MUST NOT be checked.
Implementers MUST NOT remove challenge password from cache in this method override.