Metodo IEnumCERTVIEWATTRIBUTE::Reset (certview.h)
Il metodo Reset passa all'inizio della sequenza di enumerazione dell'attributo.
Sintassi
HRESULT Reset();
Valore restituito
VB
Se il metodo ha esito positivo, il metodo restituisce S_OK.Se il metodo ha esito negativo, restituisce un valore HRESULT che indica l'errore. Per un elenco dei codici di errore comuni, vedere Valori HRESULT comuni.
Commenti
Al termine di questo metodo, chiamare il metodo IEnumCERTVIEWATTRIBUTE::Next per fare riferimento al primo attributo nella sequenza di enumerazione attributi. È possibile accedere al nome e al valore dell'attributo usando i metodi seguenti:
Esempio
// pEnumAttr is a previously instantiated
// IEnumCERTVIEWATTRIBUTE object.
HRESULT hr;
LONG Index;
hr = pEnumAttr->Reset();
if (S_OK != hr)
printf("Unable to reset pEnumAttr - %x\n", hr );
// Call the appropriate error handler and exit routine.
else
{
// Reset to the beginning of the attributes again.
while (S_OK == pEnumAttr->Next(&Index))
{
// Use each attribute as needed.
}
}
Requisiti
Requisito | Valore |
---|---|
Client minimo supportato | Nessuno supportato |
Server minimo supportato | Windows Server 2003 [solo app desktop] |
Piattaforma di destinazione | Windows |
Intestazione | certview.h (include Certsrv.h) |
Libreria | Certidl.lib |
DLL | Certadm.dll |
Vedi anche
IEnumCERTVIEWATTRIBUTE::GetName