icEnroll::get_RequestStoreFlags 方法 (xenroll.h)
[此属性在 Windows Server 2008 和 Windows Vista 中不再可用。]
RequestStoreFlags 属性设置或检索用于请求存储的注册表位置。
此属性的默认值为 CERT_SYSTEM_STORE_CURRENT_USER。 此属性首先在 ICEnroll 接口中定义。
此属性是可读写的。
语法
HRESULT get_RequestStoreFlags(
LONG *pdwFlags
);
参数
pdwFlags
返回值
无
备注
RequestStoreFlags 属性值通过使用其 dwFlags 参数传递给 CertOpenStore CryptoAPI 函数。
通常,仅在高级应用程序中执行 RequestStoreFlags 属性的 修改。
应先设置 RequestStoreFlags 属性,然后再使用以下方法:
示例
DWORD dwFlags;
HRESULT hr;
// pEnroll is previously instantiated ICEnroll interface pointer
// retrieve the flag value
hr = pEnroll->get_RequestStoreFlags( &dwFlags );
if ( FAILED ( hr ) )
printf("Failed retrieving RequestStoreFlags - %x\n", hr );
else
printf("RequestStoreFlags is %x\n", dwFlags );
// set the flag
hr = pEnroll->put_RequestStoreFlags
( CERT_SYSTEM_STORE_LOCAL_MACHINE );
if ( FAILED ( hr ) )
printf("Failed updating RequestStoreFlags - %x\n", hr );
else
printf("Updated RequestStoreFlags\n");
要求
要求 | 值 |
---|---|
最低受支持的客户端 | Windows XP [仅限桌面应用] |
最低受支持的服务器 | Windows Server 2003 [仅限桌面应用] |
目标平台 | Windows |
标头 | xenroll.h |
Library | Uuid.lib |
DLL | Xenroll.dll |