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!

AppDomain UnhandledException Event

[To be supplied.]

The following declaration shows the syntax for a method that handles the UnhandledException event.

[Visual Basic]
Private Sub AppDomainName_UnhandledException( _
   ByVal sender As Object, _
   ByVal e As UnhandledExceptionEventArgs _
)
[C#]
private void AppDomainName_UnhandledException(
   object sender,
   UnhandledExceptionEventArgs e
);
[C++]
private: void AppDomainName_UnhandledException(
   Object* sender,
   UnhandledExceptionEventArgs* e
);
[JScript]
private AppDomainName_UnhandledException(
   sender : Object,
   e : UnhandledExceptionEventArgs
);

Parameters

sender
The source of the event.
e
An UnhandledExceptionEventArgs that contains the event data.

See Also

AppDomain Class | AppDomain MembersTopic | System Namespace