HSE_SEND_HEADER_EX_INFO

This structure is used by the ServerSupportFunction HSE_REQ_SEND_RESPONSE_HEADER_EX. An ISAPI extension must fill the structure with the required data and return it to the 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  {
    // HTTP status code and header
    //
    LPCSTR  pszStatus;  // HTTP status code  eg: "200 OK"
    LPCSTR  pszHeader;  // HTTP header
    DWORD   cchStatus;  // number of characters in status code
    DWORD   cchHeader;  // number of characters in header
    BOOL    fKeepConn;  // keep client connection alive?
} HSE_SEND_HEADER_EX_INFO, * LPHSE_SEND_HEADER_EX_INFO;

Members

pszStatus
The status of the current request.
pszHeader
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 of not the connection that was used to process the request should remain active.

© 1997 by Microsoft Corporation. All rights reserved.