Wait Handles
This lesson discusses the abstract class WaitHandle and its derived classes in C#
We'll cover the following...
We'll cover the following...
Wait Handles
In this section, we'll discuss the remaining derived classes of the abstract class WaitHandle with examples.
EventWaitHandle
The EventWaitHandle object can be either in a signaled or an unsignaled state. When signaled the object, depending on the reset mode we choose at the time of creating the object, will either automatically reset itself to an unsignaled state or need to be manually reset using the Reset() method.
In the example above ...