Overload | Description |
---|---|
Run<T>(Func<T>,Progressor,TaskCreationOptions) | Queue a new task of type T to the framework dispatcher thread using the specified progressor. |
Run<T>(Func<Task<T>>,Progressor,TaskCreationOptions) | Queue a new task of type T to the framework dispatcher thread using the specified progressor. |
Run<T>(Func<T>,CancelableProgressor,TaskCreationOptions) | Queue a new cancelable task of type T to the framework dispatcher thread using the specified progressor. |
Run<T>(Func<Task<T>>,CancelableProgressor,TaskCreationOptions) | Queue a new cancelable task of type T to the framework dispatcher thread using the specified progressor. |
Run<T>(Func<T>,TaskCreationOptions) | Queue a new task of type T to the framework dispatcher. |
Run<T>(Func<Task<T>>,TaskCreationOptions) | Queue a new task of type T to the framework dispatcher. |
Run(Action,Progressor,TaskCreationOptions) | Queue a new task to the framework dispatcher thread using the specified progressor. |
Run(Func<Task>,Progressor,TaskCreationOptions) | Queue a new task to the framework dispatcher thread using the specified progressor. |
Run(Action,CancelableProgressor,TaskCreationOptions) | Queue a new cancelable task to the framework dispatcher thread using the specified progressor. |
Run(Func<Task>,CancelableProgressor,TaskCreationOptions) | Queue a new cancelable task to the framework dispatcher thread using the specified progressor. |
Run(Action,TaskCreationOptions) | Queue a new task to the framework dispatcher thread. |
Run(Func<Task>,TaskCreationOptions) | Queue a new task to the framework dispatcher thread. |