AppDomain::DomainUnload Event
Occurs when an AppDomain is about to be unloaded.
Assembly: mscorlib (in mscorlib.dll)
public: virtual event EventHandler^ DomainUnload { void add (EventHandler^ value); void remove (EventHandler^ value); }
Implements
_AppDomain::DomainUnloadThe EventHandler delegate for this event can perform any termination activities before the application domain is unloaded.
Each application domain that needs to perform processing when it is unloaded should register an event handler for this event. A shared event handler should not be used, because the EventHandler delegate does not identify the domain that is being unloaded.
Note |
|---|
This event is never raised in the default application domain. |
Do not make assumptions about the thread the event is raised on. The event can be raised on a different thread than the one that called the Unload method.
To register an event handler for this event, you must have the required permissions, or a SecurityException is thrown.
For more information about handling events, see Consuming Events.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note