Method | Description | |
---|---|---|
BeginInvoke ( this dispatcherService, System.Action action ) : void |
Executes the specified action asynchronously with the specified arguments on the thread that the Dispatcher was created on.
|
|
BeginInvoke ( this dispatcherService, |
Executes the specified delegate asynchronously with the specified arguments on the thread that the Dispatcher was created on.
|
|
BeginInvokeIfRequired ( this dispatcherService, System.Action action ) : void |
Executes the specified action asynchronously with the specified arguments on the thread that the Dispatcher was created on if required.
|
|
BeginInvokeIfRequired ( this dispatcherService, |
Executes the specified delegate asynchronously with the specified arguments on the thread that the Dispatcher was created on if required.
|
|
Invoke ( this dispatcherService, |
Executes the specified delegate with the specified arguments synchronously on the thread the Dispatcher is associated with.
|
|
InvokeIfRequired ( this dispatcherService, System.Action action ) : void |
Executes the specified action asynchronously with the specified arguments on the thread that the Dispatcher was created on if required.
|
|
InvokeIfRequired ( this dispatcherService, |
Executes the specified delegate asynchronously with the specified arguments on the thread that the Dispatcher was created on if required.
|
public static BeginInvoke ( this dispatcherService, System.Action action ) : void | ||
dispatcherService | this | The dispatcher service. |
action | System.Action | The action. |
return | void |
public static BeginInvoke ( this dispatcherService, |
||
dispatcherService | this | The dispatcher service. |
method | A delegate to a method that takes parameters specified in args, which is pushed onto the Dispatcher event queue. | |
return | void |
public static BeginInvokeIfRequired ( this dispatcherService, System.Action action ) : void | ||
dispatcherService | this | The dispatcher service. |
action | System.Action | The action. |
return | void |
public static BeginInvokeIfRequired ( this dispatcherService, |
||
dispatcherService | this | The dispatcher service. |
method | A delegate to a method that takes parameters specified in args, which is pushed onto the Dispatcher event queue. | |
return | void |
public static Invoke ( this dispatcherService, |
||
dispatcherService | this | The dispatcher service. |
method | A delegate to a method that takes parameters specified in args, which is pushed onto the Dispatcher event queue. | |
return | void |
public static InvokeIfRequired ( this dispatcherService, System.Action action ) : void | ||
dispatcherService | this | The dispatcher service. |
action | System.Action | The action. |
return | void |
public static InvokeIfRequired ( this dispatcherService, |
||
dispatcherService | this | The dispatcher service. |
method | A delegate to a method that takes parameters specified in args, which is pushed onto the Dispatcher event queue. | |
return | void |