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!

NativeWindow.OnThreadException

When overridden in a derived class, manages an unhandled thread exception.

[Visual Basic]
Overridable Protected Sub OnThreadException( _
   ByVal e As Exception _
)
[C#]
protected virtual void OnThreadException(
   Exception e
);
[C++]
protected: virtual void OnThreadException(
   Exception* e
);
[JScript]
protected function OnThreadException(
   e : Exception
);

Parameters

e
An Exception that specifies the unhandled thread exception.

Remarks

Typically, thread exceptions are handled by OnThreadException.

See Also

NativeWindow Class | NativeWindow Members | System.WinForms Namespace | NativeWindow | Handle | AssignHandle | CreateHandle | DestroyHandle | ReleaseHandle | WndProc | Application