I'm looking for a way to execute a method on stop debugging in an ASP.NET web application.
I have several resource releases methods that I have to execute in any way the application shuts down. (Including stop debugging (kill))
I've tried Application_End
and overriding Dispose()
in global.asax but they are not executing on stop debugging. Either AppDomain.CurrentDomain.ProcessExit
event.
Actually it makes sense any method can not be executed while we kill the process but it might be a creative way to do so.