System.Threading.AutoResetEvent Members

The members of System.Threading.AutoResetEvent are listed below.

See Also: Inherited members from System.Threading.EventWaitHandle

Public Constructors

Initializes a new instance of the System.Threading.AutoResetEvent class with a Boolean value indicating whether to set the initial state to signaled.

Public Methods

Reset() : bool

Sets the state of the event to nonsignaled, which causes threads to block.

Set() : bool

Sets the state of the event to signaled, which allows at most one waiting thread to proceed.