Method | Description | |
---|---|---|
ModelBase ( ) : System |
Method | Description | |
---|---|---|
BeginInvoke ( System.Action action ) : |
Invokes an action asynchonously.
|
|
BeginInvoke ( System.Action action, System.Action onComplete ) : |
Invokes an action asynchonously and then calls back when complete on the thread that began the invocation. The callback will be invoked irrespective of whether the operation was cancelled via the BackgroundWorker object. If supporting cancellable operations, use your reference to the 'BackgroundWorker' to handle cancelled operations within the calling code. |
|
BeginInvoke ( System.Action action, Action |
Invokes an action asynchonously and then calls back when complete on the thread that began the invocation. The callback will be invoked irrespective of whether the operation was cancelled via the BackgroundWorker object. If supporting cancellable operations, use your reference to the 'BackgroundWorker' to handle cancelled operations within the calling code. |
|
InvokeOnUiThread ( System.Action action ) : void |
Invokes the given action on the UI thread synchronously.
|
Method | Description | |
---|---|---|
InvokeAsynchronous ( System.Action action, Action |
||
InvokeSynchronous ( System.Action action, Action |
||
OnAsyncError ( |
||
ProcessAction ( System.Action action ) : |
protected BeginInvoke ( System.Action action ) : |
||
action | System.Action | The action to invoke. |
return |
protected BeginInvoke ( System.Action action, System.Action onComplete ) : |
||
action | System.Action | The action to invoke. |
onComplete | System.Action | The callback to invoke when complete. |
return |
protected BeginInvoke ( System.Action action, Action |
||
action | System.Action | The action to invoke. |
onComplete | Action |
/// The callback to invoke when complete, including error state. /// Use the IsHandled property to prevent the error from being thrown. /// |
return |
protected InvokeOnUiThread ( System.Action action ) : void | ||
action | System.Action | The action to invoke. |
return | void |