Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

AppDomain::DomainUnload Event

 

Occurs when an AppDomain is about to be unloaded.

Namespace:   System
Assembly:  mscorlib (in mscorlib.dll)

public:
event EventHandler^ DomainUnload {
	virtual void add(EventHandler^ value) sealed;
	virtual void remove(EventHandler^ value) sealed;
}

The 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.

System_CAPS_noteNote

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.

For more information about handling events, see Handling and Raising Events.

.NET Framework
Available since 1.1
Return to top
Show: