Method | Description | |
---|---|---|
Dispose ( ) : void |
Releases all the resources used by the SafeManualResetEvent object. Also signals all waiting threads and ignores all calls to Reset.
|
|
Reset ( ) : void |
Sets the state of the event to signaled, allowing one or more waiting threads to proceed.
|
|
SafeManualResetEvent ( bool signaledState ) : System |
Creates a new SafeManualResetEvent
|
|
Set ( ) : void |
Sets the state of the event to signaled, allowing one or more waiting threads to proceed.
|
|
WaitOne ( ) : void |
Blocks the current thread until Set or Dispose is called..
|
public SafeManualResetEvent ( bool signaledState ) : System | ||
signaledState | bool | true to set the initial state signaled; false to set the initial state to nonsignaled. |
return | System |