The HTTP_UNKNOWN_HEADER structure contains the name and value for a header in an HTTP request or response whose name does not appear in the enumeration.
typedef struct _HTTP_UNKNOWN_HEADER { USHORT NameLength; USHORT RawValueLength; PCSTR pName; PCSTR pRawValue; }HTTP_UNKNOWN_HEADER, *PHTTP_UNKNOWN_HEADER;
The size, in bytes, of the data pointed to by the pName member not counting a terminating null.
The size, in bytes, of the data pointed to by the pRawValue member, in bytes.
A pointer to a string of octets that specifies the header name. Use NameLength to determine the end of the string, rather than relying on a terminating null.
A pointer to a string of octets that specifies the values for this header. Use RawValueLength to determine the end of the string, rather than relying on a terminating null.
Send comments about this topic to Microsoft
Build date: 11/19/2009