HTTP_RESPONSE_INFO structure (http.h)
The HTTP_RESPONSE_INFO structure extends the HTTP_RESPONSE structure with additional information for the response.
Syntax
typedef struct _HTTP_RESPONSE_INFO {
HTTP_RESPONSE_INFO_TYPE Type;
ULONG Length;
PVOID pInfo;
} HTTP_RESPONSE_INFO, *PHTTP_RESPONSE_INFO;
Members
Type
A member of the HTTP_RESPONSE_INFO_TYPE enumeration specifying the type of information contained in this structure.
Length
The length, in bytes, of the pInfo member.
pInfo
A pointer to the HTTP_MULTIPLE_KNOWN_HEADERS structure when the InfoType member is HttpResponseInfoTypeMultipleKnownHeaders; otherwise NULL.
Remarks
Starting with the HTTP Server API version 2.0, the HTTP_RESPONSE structure is extended to include an array of HTTP_RESPONSE_INFO structures in the pRequestInfo member. These structures contain additional information for the response.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows Vista [desktop apps only] |
Minimum supported server | Windows Server 2008 [desktop apps only] |
Header | http.h |