HSE_SEND_HEADER_EX_INFO Structure
This structure is used by the ServerSupportFunctionHSE_REQ_SEND_RESPONSE_HEADER_EX. An ISAPI extension must fill the structure with the required data and return it to IIS. You can use this structure to indicate that the connection that is being used to service the current request should be kept active for further processing.
typedef struct _HSE_SEND_HEADER_EX_INFO HSE_SEND_HEADER_EX_INFO {
LPCSTR pszStatus;
LPCSTR pszHeader;
DWORD cchStatus;
DWORD cchHeader;
BOOL fKeepConn;
} HSE_SEND_HEADER_EX_INFO, * LPHSE_SEND_HEADER_EX_INFO;
Members
pszStatus
The NULL-terminated string containing the status of the current request.pszHeader
The NULL-terminated string containing the header to return.cchStatus
The number of characters in the status code.cchHeader
The number of characters in the header.fKeepConn
A Boolean indicating whether or not the connection that was used to process the request should remain active.
Requirements
Client: Requires Windows XP Professional, Windows 2000 Professional, or Windows NT Workstation 4.0.
Server: Requires Windows Server 2003, Windows 2000 Server, or Windows NT Server 4.0.
Product: IIS
Header: Declared in httpext.h.