ICertServerPolicy::EnumerateExtensionsSetup 方法 (certif.h)
EnumerateExtensionsSetup 方法初始化指向与当前上下文关联的第一个证书扩展的内部枚举指针。
语法
HRESULT EnumerateExtensionsSetup(
[in] LONG Flags
);
参数
[in] Flags
此参数是保留的,必须设置为零。
返回值
VB
如果方法成功,该方法将返回S_OK。如果方法失败,它将返回一个 指示错误的 HRESULT 值。 有关常见错误代码的列表,请参阅 通用 HRESULT 值。
注解
在调用此方法之前,必须调用 SetContext 方法。 对 SetContext 的调用指定哪个请求是当前上下文。
若要检索扩展,请调用 EnumerateExtensions 方法。 对 EnumerateExtensions 的 调用将检索第一个扩展,并将索引移动到下一个扩展(如果存在)。
示例
// Set the context. The value nContext (long) would be the same
// as the context parameter in ICertPolicy::VerifyRequest.
// hr is defined as an HRESULT.
// pCertServerPolicy has been used to call SetContext previously.
hr = pCertServerPolicy->SetContext( nContext );
if (FAILED(hr))
{
printf("Failed SetContext [%x]\n", hr);
goto error;
}
// Setup the enumeration.
hr = pCertServerPolicy->EnumerateExtensionsSetup( 0 );
if (FAILED(hr))
{
printf("Failed EnumerateExtensionsSetup [%x]\n", hr);
goto error;
}
要求
要求 | 值 |
---|---|
最低受支持的客户端 | 无受支持的版本 |
最低受支持的服务器 | Windows Server 2003 [仅限桌面应用] |
目标平台 | Windows |
标头 | certif.h (包括 Certsrv.h) |
Library | Certidl.lib |
DLL | Certcli.dll |