Condividi tramite


struttura HTTP_RESPONSE_INFO (http.h)

La struttura HTTP_RESPONSE_INFO estende la struttura HTTP_RESPONSE con informazioni aggiuntive per la risposta.

Sintassi

typedef struct _HTTP_RESPONSE_INFO {
  HTTP_RESPONSE_INFO_TYPE Type;
  ULONG                   Length;
  PVOID                   pInfo;
} HTTP_RESPONSE_INFO, *PHTTP_RESPONSE_INFO;

Members

Type

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

Length

Lunghezza, in byte, del membro pInfo .

pInfo

Puntatore alla struttura HTTP_MULTIPLE_KNOWN_HEADERS quando il membro InfoType è HttpResponseInfoTypeMultipleKnownHeaders; in caso contrario , NULL.

Commenti

A partire dall'API SERVER HTTP versione 2.0, la struttura HTTP_RESPONSE viene estesa per includere una matrice di strutture HTTP_RESPONSE_INFO nel membro pRequestInfo . Queste strutture contengono informazioni aggiuntive per la risposta.

Requisiti

   
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_RESPONSE

HTTP_RESPONSE_V2