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!

ManualResetEvent Constructor

Initializes a new ManualResetEvent.

[Visual Basic]
Public Sub New( _
   ByVal initialState As Boolean _
)
[C#]
public ManualResetEvent(
   bool initialState
);
[C++]
public: ManualResetEvent(
   bool initialState
);
[JScript]
public function ManualResetEvent(
   initialState : Boolean
);

Parameters

initialState
Specifies whether the initial state of the event object is signaled. If true, the initial state is signaled; otherwise, it is nonsignaled.

See Also

ManualResetEvent Class | ManualResetEvent Members | System.Threading Namespace