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 Reference

public class ManualResetEvent : WaitHandle
{
   public ManualResetEvent(boolean initialState);
   public boolean Reset();
   public boolean Set();
}

ManualResetEvent

Initializes a new ManualResetEvent. InitialState specifies the initial state of the event object. If TRUE, the initial state is signaled; otherwise, it is nonsignaled.

Reset

The Reset method sets the state of the specified event object to nonsignaled.

Set

The Set method sets the state of the specified event object to signaled.