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.RemoveOnNotify

Remove a notify from the list

[Visual Basic]
Overridable Public Sub RemoveOnNotify( _
   ByVal pollMethod As BooleanReturnMethodInvoker, _
   ByVal notifyMethod As MethodInvoker _
)
[C#]
public virtual void RemoveOnNotify(
   BooleanReturnMethodInvoker pollMethod,
   MethodInvoker notifyMethod
);
[C++]
public: virtual void RemoveOnNotify(
   BooleanReturnMethodInvoker* pollMethod,
   MethodInvoker* notifyMethod
);
[JScript]
public function RemoveOnNotify(
   pollMethod : BooleanReturnMethodInvoker,
   notifyMethod : MethodInvoker
);

Parameters

pollMethod
The method that is invoked for polling
notifyMethod
The method that is invoked when pollMethod returns true

See Also

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