struttura WINHTTP_EXTENDED_HEADER (winhttp.h)

Rappresenta un'intestazione di richiesta HTTP come coppia di stringhe nome/valore.

Sintassi

typedef struct _WINHTTP_EXTENDED_HEADER {
  union {
    PCWSTR pwszName;
    PCSTR  pszName;
  };
  union {
    PCWSTR pwszValue;
    PCSTR  pszValue;
  };
} WINHTTP_EXTENDED_HEADER, *PWINHTTP_EXTENDED_HEADER;

Members

pwszName

Tipo: IN PCWSTR

Stringa wide contenente un nome.

pszName

Tipo: IN PCSTR

Stringa stretta contenente un nome.

pwszValue

Tipo: IN PCWSTR

Stringa wide contenente un valore.

pszValue

Tipo: IN PCSTR

Stringa stretta contenente un valore.

Requisiti

   
Client minimo supportato Windows 10 Build 20348
Server minimo supportato Windows 10 Build 20348
Intestazione winhttp.h

Vedi anche