Metodo ICEnroll::get_RootStoreType (xenroll.h)
[Questa proprietà non è più disponibile per l'uso a partire da Windows Server 2008 e Windows Vista.]
La proprietà RootStoreType imposta o recupera il tipo di archivio da usare per l'archivio specificato dalla proprietà RootStoreName . Questo tipo di archivio viene passato direttamente alla funzione CertOpenStore .
Il valore predefinito per questa proprietà è sz_CERT_STORE_PROV_SYSTEM. Sono supportati solo gli archivi di sistema. Questa proprietà è stata prima definita nell'interfaccia ICEnroll .
Si tratta di una proprietà di lettura/scrittura.
Sintassi
HRESULT get_RootStoreType(
BSTR *pbstrType
);
Parametri
pbstrType
Valore restituito
nessuno
Osservazioni
RootStoreType influisce sul comportamento dei metodi seguenti:
La possibilità di impostare questa proprietà è disabilitata quando viene eseguito il controllo registrazione certificati come controllo script.
Esempio
BSTR bstrStoreType = NULL;
HRESULT hr;
// pEnroll is previously instantiated ICEnroll interface pointer
// get the storetype
hr = pEnroll->get_RootStoreType( &bstrStoreType );
if ( FAILED ( hr ) )
printf("Failed getting RootStoreType - %x\n", hr );
else
printf( "RootStoreType: %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_RootStoreType( bstrNewType );
if ( FAILED ( hr ) )
printf("Failed setting RootStoreType - %x\n", hr );
else
printf( "RootStoreType was set to %ws\n", bstrNewType );
Requisiti
Requisito | Valore |
---|---|
Client minimo supportato | Windows XP [solo app desktop] |
Server minimo supportato | Windows Server 2003 [solo app desktop] |
Piattaforma di destinazione | Windows |
Intestazione | xenroll.h |
Libreria | Uuid.lib |
DLL | Xenroll.dll |