HTTP_FILTER_SEND_RESPONSE (Windows CE 5.0)

Send Feedback

This structure contains information that facilitates communication with an ISAPI filter. The filter receives a notification immediately prior to sending any headers to the client. The filter can inspect, modify, or add headers the client will receive as part of the response to the client's original request. The structure contains the same members as the HTTP_FILTER_PREPROC_HEADERS structure. When a filter has registered for the SF_NOTIFY_SEND_RESPONSE event, the pvNotification parameter of HttpFilterProc will point to this structure.

typedef struct HTTP_FILTER_SEND_RESPONSE{BOOL (WINAPI* GetHeader); BOOL (WINAPI* SetHeader); BOOL (WINAPI* AddHeader); DWORDHttpStatus;DWORDdwReserved;} HTTP_FILTER_SEND_RESPONSE, *PHTTP_FILTER_SEND_RESPONSE;

Members

  • GetHeader
    Pointer to the GetHeader function, which retrieves the specified header value. Header names must include the trailing colon (:).
  • SetHeader
    Pointer to the SetHeader function, which changes or deletes the value of a header.
  • AddHeader
    Pointer to the AddHeader function to add a header to the response.
  • HttpStatus
    Current HTTP status code.
  • dwReserved
    Reserved for later use.

Requirements

Pocket PC: Pocket PC 2000 and later.
Smartphone: Smartphone 2002 and later.
OS Versions: Windows CE 3.0 and later.
Header: Httpfilt.h.

See Also

ISAPI Filters and HTTP Headers

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.