mscorlib(4.0.0.0) API with additions
ManualResetEvent.cs
3 
4 namespace System.Threading
5 {
7  [ComVisible(true)]
8  [__DynamicallyInvokable]
9  [HostProtection(SecurityAction.LinkDemand, Synchronization = true, ExternalThreading = true)]
10  public sealed class ManualResetEvent : EventWaitHandle
11  {
15  [__DynamicallyInvokable]
16  public ManualResetEvent(bool initialState)
17  : base(initialState, EventResetMode.ManualReset)
18  {
19  }
20  }
21 }
Definition: __Canon.cs:3
SecurityAction
Specifies the security actions that can be performed using declarative security.
Notifies one or more waiting threads that an event has occurred. This class cannot be inherited.
Represents a thread synchronization event.
ManualResetEvent(bool initialState)
Initializes a new instance of the T:System.Threading.ManualResetEvent class with a Boolean value indi...
EventResetMode
Indicates whether an T:System.Threading.EventWaitHandle is reset automatically or manually after rece...
When signaled, the T:System.Threading.EventWaitHandle releases all waiting threads and remains signal...