Edit

Share via


AppDomain.DomainUnload Event

Definition

Occurs when an AppDomain is about to be unloaded.

public:
 event EventHandler ^ DomainUnload;
public:
 virtual event EventHandler ^ DomainUnload;
public event EventHandler? DomainUnload;
public event EventHandler DomainUnload;
member this.DomainUnload : EventHandler 
Public Custom Event DomainUnload As EventHandler 

Event Type

Implements

Remarks

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.

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.

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

Applies to