structure WINHTTP_EXTENDED_HEADER (winhttp.h)
Représente un en-tête de requête HTTP sous la forme d’une paire de chaînes nom/valeur.
Syntaxe
typedef struct _WINHTTP_EXTENDED_HEADER {
union {
PCWSTR pwszName;
PCSTR pszName;
};
union {
PCWSTR pwszValue;
PCSTR pszValue;
};
} WINHTTP_EXTENDED_HEADER, *PWINHTTP_EXTENDED_HEADER;
Membres
pwszName
Type : IN PCWSTR
Chaîne large contenant un nom.
pszName
Type : IN PCSTR
Chaîne étroite contenant un nom.
pwszValue
Type : IN PCWSTR
Chaîne large contenant une valeur.
pszValue
Type : IN PCSTR
Chaîne étroite contenant une valeur.
Configuration requise
Client minimal pris en charge | Windows 10 Build 20348 |
Serveur minimal pris en charge | Windows 10 Build 20348 |
En-tête | winhttp.h |