Method | Description | |
---|---|---|
BeginInvoke ( System.Action action ) : void |
Queues the action to the thread and returns immediately.
|
|
BeginInvoke ( Action |
Queues the action to the thread and returns immediately.
|
|
BeginInvoke ( Action |
Queues the action to the thread and returns immediately.
|
|
Invoke ( System.Action action ) : void |
Invokes the action on the thread and blocks until it completes.
|
|
Invoke ( Action |
Invokes the action on the thread and blocks until it completes.
|
|
Invoke ( Action |
Invokes the action on the thread and blocks until it completes.
|
|
StartNewThread ( System.Action action ) : void |
Asynchronously invokes the action on a new thread and returns immediately.
|
|
StartNewThread ( Action |
Asynchronously invokes the action on a new thread and returns immediately.
|
|
StartNewThread ( Action |
Asynchronously invokes the action on a new thread and returns immediately.
|
Method | Description | |
---|---|---|
MakeMultiThreaded ( ) : void | ||
WrapState ( Object obj ) : NSValue |
Wraps a System.GCHandle for an object into a Monobjc.Foundation.NSValue instance.
|
public BeginInvoke ( System.Action action ) : void | ||
action | System.Action | Action to invoke. |
return | void |
public BeginInvoke ( Action |
||
actionWithId | Action |
The delegate that will be executed on the thread. |
arg | Id | The single argument passed to the target. May be nil. |
return | void |
public BeginInvoke ( Action | ||
actionWithState | Action | The delegate that will be executed on the thread. |
state | Object | The single argument passed to the target. May be nil. |
return | void |
public Invoke ( System.Action action ) : void | ||
action | System.Action | Action to invoke. |
return | void |
public Invoke ( Action |
||
actionWithId | Action |
The delegate that will be executed on the thread. |
arg | Id | The single argument passed to the target. May be nil. |
return | void |
public Invoke ( Action | ||
actionWithState | Action | The delegate that will be executed on the thread. |
state | Object | The single argument passed to the target. May be nil. |
return | void |
public static StartNewThread ( System.Action action ) : void | ||
action | System.Action | Action to invoke. |
return | void |
public static StartNewThread ( Action |
||
actionWithId | Action |
The delegate that will be executed on the new thread. |
arg | Id | The single argument passed to the target. May be nil. |
return | void |
public static StartNewThread ( Action | ||
actionWithState | Action | The delegate that will be executed on a new thread. |
state | Object | The single argument passed to the target. May be nil. |
return | void |