Method | Description | |
---|---|---|
BeginInvokeAfterTimeout ( this dispatcher, System.TimeSpan timeout, System.Action action ) : void |
Executes the specified action asynchronously on the thread the Dispatcher is associated with, after the specified timeout.
|
|
BeginInvokeAfterTimeout ( this dispatcher, double timeout, System.Action action ) : void |
Executes the specified action asynchronously on the thread the Dispatcher is associated with, after the specified timeout.
|
|
ToTaskSchedulerAsync ( this dispatcher ) : Task |
Retrieves a TaskScheduler instance for the thread the Dispatcher is associated with.
|
public static BeginInvokeAfterTimeout ( this dispatcher, System.TimeSpan timeout, System.Action action ) : void | ||
dispatcher | this | The dispatcher instance. |
timeout | System.TimeSpan | The |
action | System.Action | The |
return | void |
public static BeginInvokeAfterTimeout ( this dispatcher, double timeout, System.Action action ) : void | ||
dispatcher | this | The dispatcher instance. |
timeout | double | The amount of time to delay before the action is invoked. |
action | System.Action | The |
return | void |
public static ToTaskSchedulerAsync ( this dispatcher ) : Task |
||
dispatcher | this | The dispatcher instance. |
return | Task |