System.Threading.EventWaitHandle Members

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

See Also: Inherited members from System.Threading.WaitHandle

Public Constructors

Initializes a new instance of the System.Threading.EventWaitHandle class, specifying whether the wait handle is initially signaled, and whether it resets automatically or manually.

Initializes a new instance of the System.Threading.EventWaitHandle class, specifying whether the wait handle is initially signaled if created as a result of this call, whether it resets automatically or manually, and the name of a system synchronization event.

Documentation for this section has not yet been entered.
Documentation for this section has not yet been entered.

Public Methods

GetAccessControl() : System.Security.AccessControl.EventWaitHandleSecurity

Gets an System.Security.AccessControl.EventWaitHandleSecurity object that represents the access control security for the named system event represented by the current System.Threading.EventWaitHandle object.

static
OpenExisting(string) : EventWaitHandle

Opens the specified named synchronization event, if it already exists.

static
OpenExisting(string, System.Security.AccessControl.EventWaitHandleRights) : EventWaitHandle

Opens the specified named synchronization event, if it already exists, with the desired security access.

Reset() : bool

Sets the state of the event to nonsignaled, causing threads to block.

Set() : bool

Sets the state of the event to signaled, allowing one or more waiting threads to proceed.

SetAccessControl(System.Security.AccessControl.EventWaitHandleSecurity)

Sets the access control security for a named system event.

static
TryOpenExisting(string, out EventWaitHandle) : bool
Documentation for this section has not yet been entered.
static
TryOpenExisting(string, System.Security.AccessControl.EventWaitHandleRights, out EventWaitHandle) : bool
Documentation for this section has not yet been entered.