I am writing an http module, and I want to add a method that is called when (and only when) appdomain receives recirculation. I don't want to add anything to global.asax, I want to do this programmatically in the http module.
However, the HttpApplication instance passed in the Init module does not seem to have an End event. How can I subscribe to the Application_End event?
source share