Unload event for the default AppDomain?
- by Zor
Hi,
I need to have an event fired whenever any AppDomain unloads - including the default one of the process. The problem with AppDomain.DomainUnload is that it only fires for non-default AppDomains. Furthermore, AppDomain.ProcessExit has limited execution time, which I cannot rely on.
Any suggestions as to how I can achieve this would be greatly appreciated!
(Alternatively, having an event fired when a background thread (Thread.IsBackground == True) works too.)
Thanks in advance.