I am writing a custom IHttpModule implementor so I can log request/response information as required. However I've hit a stumbling block when attempting to read the response headers. HttpResponse.Headers is now only supported if you are running on IIS7 and in integrated pipeline mode. I need this module to be installed in web applications hosted under IIS6, so I need an alternative way to get this information.
What is the best way to achieve this?