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 Class

Represents an event object whose state can be manually set and reset. The state of a manual-reset event object remains signaled until it is set explicitly to the nonsignaled state by the Reset method. Any number of waiting threads, or threads that subsequently begin wait operations for the specified event object by calling one of the wait functions, can be released while the object's state is signaled.

Object
   WaitHandle
      ManualResetEvent

[Visual Basic]
NotInheritable Public Class ManualResetEvent
   Inherits WaitHandle
[C#]
public sealed class ManualResetEvent : WaitHandle
[C++]
public __gc __sealed class ManualResetEvent : public WaitHandle
[JScript]
public class ManualResetEvent extends WaitHandle

Remarks

[To be supplied.]

Requirements

Namespace: System.Threading

Assembly: mscorlib.dll

See Also

ManualResetEvent Members | System.Threading Namespace