ICertServerPolicy::EnumerateAttributesSetup 方法 (certif.h)
EnumerateAttributesSetup 方法初始化指向与当前上下文关联的第一个请求属性的内部枚举指针。
语法
HRESULT EnumerateAttributesSetup(
[in] LONG Flags
);
参数
[in] Flags
此参数是保留的,必须设置为零。
返回值
VB
如果该方法成功,该方法将返回S_OK。如果方法失败,它将返回指示错误的 HRESULT 值。 有关常见错误代码的列表,请参阅 常见 HRESULT 值。
注解
在调用此方法之前,必须调用 SetContext 方法。 对 SetContext 的调用指定要用作当前上下文的请求。
若要检索特性,请调用 EnumerateAttributes 方法。 对 EnumerateAttributes 的 调用将检索第一个属性,并将索引移动到下一个属性(如果存在)。
示例
// 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->EnumerateAttributesSetup(0);
if (FAILED(hr))
{
printf("Failed EnumerateAttributesSetup [%x]\n", hr);
goto error;
}
要求
要求 | 值 |
---|---|
最低受支持的客户端 | 无受支持的版本 |
最低受支持的服务器 | Windows Server 2003 [仅限桌面应用] |
目标平台 | Windows |
标头 | certif.h (包括 Certsrv.h) |
Library | Certidl.lib |
DLL | Certcli.dll |
另请参阅
ICertServerPolicy::EnumerateAttributes