NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

UnhandledExceptionEventHandler Delegate

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.

Parameters [Visual Basic, C#, C++]

The declaration of your event-handling method must have the same parameters as the UnhandledExceptionEventHandler delegate declaration.

sender
The originator of the exception.
e
The event description.

Remarks

[To be supplied.]

Requirements

Namespace: System

Assembly: mscorlib.dll

See Also

System Namespace