How to dispose IHttpModule correctly?
The lifecycle of an HttpModule is tightly integrated with the lifecycle of an HttpApplication. Instances of HttpModule are generated when the application is started and destroyed when the application is disposed of. In this case there is no point in unsubscribing from the event because the publisher (HttpApplication) is being disposed of anyway. Of course, … Read more