Condividi tramite


struttura HTTP_REQUEST_INFO (http.h)

La struttura HTTP_REQUEST_INFO estende la struttura HTTP_REQUEST con informazioni aggiuntive sulla richiesta.

Sintassi

typedef struct _HTTP_REQUEST_INFO {
  HTTP_REQUEST_INFO_TYPE InfoType;
  ULONG                  InfoLength;
  PVOID                  pInfo;
} HTTP_REQUEST_INFO, *PHTTP_REQUEST_INFO;

Members

InfoType

Membro dell'enumerazione HTTP_REQUEST_INFO_TYPE che specifica il tipo di informazioni contenute in questa struttura.

InfoLength

Lunghezza, in byte, del membro pInfo .

pInfo

Puntatore alla struttura HTTP_REQUEST_AUTH_INFO quando il membro InfoType è HttpRequestInfoTypeAuth; in caso contrario , NULL.

Commenti

A partire dall'API server HTTP versione 2.0, la struttura HTTP_REQUEST viene estesa per includere una matrice di strutture HTTP_REQUEST_INFO nel membro pRequestInfo . Queste strutture contengono informazioni aggiuntive per la richiesta.

Requisiti

Requisito Valore
Client minimo supportato Windows Vista [solo app desktop]
Server minimo supportato Windows Server 2008 [solo app desktop]
Intestazione http.h

Vedi anche

Strutture dell'API server HTTP versione 2.0

HTTP_REQUEST_AUTH_INFO

HTTP_REQUEST_V2