ICEnroll::get_RequestStoreType 方法 (xenroll.h)

[从 Windows Server 2008 和 Windows Vista 起,此属性不再可供使用。]

RequestStoreType 属性设置或检索要用于 RequestStoreName 属性指定的存储的存储的类型。 此存储类型直接传递到 CertOpenStore 函数。

此属性的默认值为 sz_CERT_STORE_PROV_SYSTEM。 如果不使用默认值,则必须在调用 createPKCS10 createFilePKCS10/ 之前,在调用 acceptPKCS7acceptFilePKCS7/ 之前,将此属性设置为相同的值。

仅支持系统存储。 此属性首先在 ICEnroll 接口中定义。

此属性是可读写的。

语法

HRESULT get_RequestStoreType(
  BSTR *pbstrType
);

参数

pbstrType

返回值

备注

通常, RequestStoreType 属性的修改仅在高级应用程序中执行。

RequestStoreType 影响以下方法的行为:

当证书注册控件作为脚本控件执行时,将禁用设置此属性的功能。

示例

BSTR     bstrStoreType = NULL;
HRESULT  hr;

// pEnroll is previously instantiated ICEnroll interface pointer

// get the storetype
hr = pEnroll->get_RequestStoreType( &bstrStoreType );
if ( FAILED ( hr ) )
    printf("Failed getting RequestStoreType - %x\n", hr );
else
    printf( "RequestStoreType: %ws\n", bstrStoreType );
// free BSTR when done
if ( NULL != bstrStoreType )
    SysFreeString( bstrStoreType );

// set the storetype
// bstrNewType is a BSTR that is previously set to a valid store type
hr = pEnroll->put_RequestStoreType( bstrNewType );
if ( FAILED ( hr ) )
    printf("Failed setting RequestStoreType - %x\n", hr );
else
    printf( "RequestStoreType was set to %ws\n", bstrNewType );

要求

   
最低受支持的客户端 Windows XP [仅限桌面应用]
最低受支持的服务器 Windows Server 2003 [仅限桌面应用]
目标平台 Windows
标头 xenroll.h
Library Uuid.lib
DLL Xenroll.dll