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!

AutoResetEvent Constructor

Initializes a new AutoResetEvent. InitialState

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

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

Parameters

initialState
Indicates whether the initial state is signaled.

See Also

AutoResetEvent Class | AutoResetEvent Members | System.Threading Namespace