Indicates whether an System.Threading.EventWaitHandle is reset automatically or manually after receiving a signal.
Member Name | Description |
---|---|
AutoReset |
When signaled, the System.Threading.EventWaitHandle resets automatically after releasing a single thread. If no threads are waiting, the System.Threading.EventWaitHandle remains signaled until a thread blocks, and resets after releasing the thread. |
ManualReset |
When signaled, the System.Threading.EventWaitHandle releases all waiting threads and remains signaled until it is manually reset. |