Property | Type | Description | |
---|---|---|---|
CheckInitialization | void |
Method | Description | |
---|---|---|
Initialize ( ) : void | ||
Invoke ( System.Action action ) : void |
Executes an action on the UI thread. If this method is called from the UI thread, the action is executed immendiately. If the method is called from another thread, the action will be enqueued on the UI thread's dispatcher and executed asynchronously. For additional operations on the UI thread, you can get a reference to the UI thread's context thanks to the property UiContext .
|
|
InvokeAsync ( System.Action action ) : void |
Invokes an action asynchronously on the UI thread.
|
Method | Description | |
---|---|---|
CheckInitialization ( ) : void |
public static Invoke ( System.Action action ) : void | ||
action | System.Action | The action that will be executed on the UI /// thread. |
return | void |
public static InvokeAsync ( System.Action action ) : void | ||
action | System.Action | The action that must be executed. |
return | void |