Overload List

  NameDescription
Public methodDispatchAndWait(Action)
Creates a new Task for the target Dispatcher (default: the main Dispatcher) based upon the given action. This method will wait for the task completion.
Public methodDispatchAndWait<(Of <<'(T>)>>)(Func<(Of <<'(T>)>>))
Creates a new Task for the target Dispatcher (default: the main Dispatcher) based upon the given function. This method will wait for the task completion and returns the return value.
Public methodDispatchAndWait(Task)
Dispatches the given task to the target Dispatcher (default: the main Dispatcher). This method will wait for the task completion.
Public methodDispatchAndWait(Action, Single)
Creates a new Task for the target Dispatcher (default: the main Dispatcher) based upon the given action. This method will wait for the task completion or the timeout.
Public methodDispatchAndWait<(Of <<'(T>)>>)(Func<(Of <<'(T>)>>), Single)
Creates a new Task for the target Dispatcher (default: the main Dispatcher) based upon the given function. This method will wait for the task completion or the timeout and returns the return value.
Public methodDispatchAndWait(Task, Single)
Dispatches the given task to the target Dispatcher (default: the main Dispatcher). This method will wait for the task completion or the timeout.

See Also