Indicates whether an EventWaitHandle is reset automatically or manually.
| C# | Visual Basic |
public enum EventResetMode
Public Enumeration EventResetMode
| Member | Description |
|---|---|
| AutoReset |
When signaled, the EventWaitHandle resets automatically after releasing a single thread.
If no threads are waiting, the EventWaitHandle remains signaled until a thread blocks, and resets after releasing the thread.
|
| ManualReset |
When signaled, the EventWaitHandle releases all waiting threads, and remains signaled until it is manually reset.
|