Metodo ICEnroll::get_CAStoreName (xenroll.h)
[Questa proprietà non è più disponibile per l'uso a partire da Windows Server 2008 e Windows Vista.]
La proprietà CAStoreName imposta o recupera il nome dell'archivio in cui vengono mantenuti tutti i certificati non"ROOT" e non"MY".
Il valore predefinito per questa proprietà è "CA". Questa proprietà è stata prima definita nell'interfaccia ICEnroll .
Si tratta di una proprietà di lettura/scrittura.
Sintassi
HRESULT get_CAStoreName(
BSTR *pbstrName
);
Parametri
pbstrName
Valore restituito
nessuno
Osservazioni
La proprietà CAStoreName 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 bstrStoreName = NULL;
HRESULT hr;
// pEnroll is previously instantiated ICEnroll interface pointer
// get the storename
hr = pEnroll->get_CAStoreName( &bstrStoreName );
if ( FAILED ( hr ) )
printf("Failed getting CAStoreName - %x\n", hr );
else
printf( "CAStoreName: %ws\n", bstrStoreName );
// free BSTR when done
if ( NULL != bstrStoreName )
SysFreeString( bstrStoreName );
// set the storename
// bstrNewName previously set to a valid store name
hr = pEnroll->put_CAStoreName( bstrNewName );
if ( FAILED ( hr ) )
printf("Failed setting CAStoreName - %x\n", hr );
else
printf( "CAStoreName was set to : %ws\n", bstrNewName );
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 |