I am trying to log the contents of an http request, using an IHttpModule like so:
public class LoggingModule : IHttpModule { public void Init(HttpApplica
You need to use a request filter. Write a class deriving from Stream and register it as a filter.