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!

ThreadNotify Notify Event

[To be supplied.]

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

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

Parameters

sender
The source of the event.
e
A BooleanReturnMethodArgs that contains the event data.

See Also

ThreadNotify Class | ThreadNotify MembersTopic | System.WinForms.ComponentModel Namespace