Occurs on the default application domain when the default application domain's parent process exits.
[Visual Basic]
Public Overridable Event ProcessExit As EventHandler
[C#]
public virtual event EventHandler ProcessExit;
[C++]
public: virtual __event EventHandler* ProcessExit;
[JScript] In JScript, you can handle the events defined by a class, but you cannot define your own.
Event Data
The event handler receives an argument of type EventArgs.
Remarks
The EventHandler for this event can perform termination activities, such as closing files, releasing storage and so on, before the process ends.
To register an event handler for this event, you must have the permissions described in the Permissions section. If you do not have the appropriate permissions, a SecurityException occurs.
For more information about handling events, see Consuming Events.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
.NET Framework Security:
See Also
AppDomain Class | AppDomain Members | System Namespace