Exception handler for an event that is not handled by an application domain.
[Visual Basic] Public Delegate Sub UnhandledExceptionEventHandler( _ ByVal sender As Object, _ ByVal e As UnhandledExceptionEvent _ ) [C#] public delegate void UnhandledExceptionEventHandler( object sender, UnhandledExceptionEvent e ); [C++] public __gc __delegate void UnhandledExceptionEventHandler( Object* sender, UnhandledExceptionEvent* e );
[JScript] In JScript, you can use the delegates in the NGWS frameworks, but you cannot define your own.
The declaration of your event-handling method must have the same parameters as the UnhandledExceptionEventHandler delegate declaration.
[To be supplied.]
Namespace: System
Assembly: mscorlib.dll