The ISAPI Filter documentation says I can call SF_REQ_SEND_RESPONSE_HEADER to send the response header, and also append additional headers.
ISAPI also has AddResponseHeaders to allow a filter to add additional headers to be sent in the response to the client.
Is there a way, in ISAPI, to remove headers that would otherwise be sent to the client? Or some way to ask the ISAPI runtime to exclude certain headers from the response? The ISAPI runtime seems to always include a Server: header, and I'd like to find a way to remove that.
I know I can set or unset headers administratively, in the IIS Manager, but that isn't quite what I want. I want to do it at runtime in the filter, programmatically, and conditionally.
EDIT: BUMP.