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