This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
Overload List
|
Task<TResult>(Func<TResult>) |
Initializes a new Task<TResult> with the specified function. |
|
Task<TResult>(Func<TResult>, CancellationToken) |
Initializes a new Task<TResult> with the specified function. |
|
Task<TResult>(Func<TResult>, TaskCreationOptions) |
Initializes a new Task<TResult> with the specified function and creation options. |
|
Task<TResult>(Func<Object, TResult>, Object) |
Initializes a new Task<TResult> with the specified function and state. |
|
Task<TResult>(Func<TResult>, CancellationToken, TaskCreationOptions) |
Initializes a new Task<TResult> with the specified function and creation options. |
|
Task<TResult>(Func<Object, TResult>, Object, CancellationToken) |
Initializes a new Task<TResult> with the specified action, state, and options. |
|
Task<TResult>(Func<Object, TResult>, Object, TaskCreationOptions) |
Initializes a new Task<TResult> with the specified action, state, and options. |
|
Task<TResult>(Func<Object, TResult>, Object, CancellationToken, TaskCreationOptions) |
Initializes a new Task<TResult> with the specified action, state, and options. |
Top