C# Class WinRTXamlToolkit.Async.AsyncManualResetEvent

Notifies one or more waiting awaiters that an event has occurred
Datei anzeigen Open project: xyzzer/WinRTXamlToolkit

Public Methods

Method Description
Reset ( ) : void

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

Set ( ) : void

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

WaitAsync ( ) : Task

Waits the async.

Method Details

Reset() public method

Sets the state of the event to nonsignaled, causing awaiters to block.
public Reset ( ) : void
return void

Set() public method

Sets the state of the event to signaled, allowing one or more waiting awaiters to proceed.
public Set ( ) : void
return void

WaitAsync() public method

Waits the async.
public WaitAsync ( ) : Task
return Task