struttura HTTP_SERVICE_CONFIG_SSL_QUERY (http.h)
La struttura HTTP_SERVICE_CONFIG_SSL_QUERY viene usata per specificare un record specifico per eseguire query nell'archivio di configurazione SSL. Viene passato alla funzione HttpQueryServiceConfiguration usando il parametro pInputConfigInfo quando il parametro ConfigId è impostato su HttpServiceConfigSSSLCertInfo.
Sintassi
typedef struct _HTTP_SERVICE_CONFIG_SSL_QUERY {
HTTP_SERVICE_CONFIG_QUERY_TYPE QueryDesc;
HTTP_SERVICE_CONFIG_SSL_KEY KeyDesc;
DWORD dwToken;
} HTTP_SERVICE_CONFIG_SSL_QUERY, *PHTTP_SERVICE_CONFIG_SSL_QUERY;
Members
QueryDesc
Uno dei valori seguenti dell'enumerazione HTTP_SERVICE_CONFIG_QUERY_TYPE .
HttpServiceConfigQueryExact
Restituisce un singolo record SSL.
HttpServiceConfigQueryNext
Restituisce una sequenza di record SSL in una sequenza di chiamate, come controllato dal parametro dwToken .
KeyDesc
Se il parametro QueryDesc è uguale a HttpServiceConfigQueryExact, KeyDesc deve contenere una struttura HTTP_SERVICE_CONFIG_SSL_KEY che identifica il record del certificato SSL sottoposto a query. Se il parametro QueryDesc è uguale a HTTPServiceConfigQueryNext, KeyDesc viene ignorato.
dwToken
Se il parametro QueryDesc è uguale a HTTPServiceConfigQueryNext, dwToken deve essere uguale a zero nella prima chiamata alla funzione HttpQueryServiceConfiguration , una alla seconda chiamata, due alla terza chiamata e così via fino a quando non vengono restituiti tutti i record certificato SSL, a quel punto HttpQueryServiceConfiguration restituisce ERROR_NO_MORE_ITEMS.
Se il parametro QueryDesc è uguale a HttpServiceConfigQueryExact, dwToken viene ignorato.
Requisiti
Requisito | Valore |
---|---|
Client minimo supportato | Windows Vista, Windows XP con SP2 [solo app desktop] |
Server minimo supportato | Windows Server 2003 [solo app desktop] |
Intestazione | http.h |