This documentation is archived and is not being maintained.
Task(Of TResult) Constructor
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
|
| Name | Description |
|---|
|
Task(Of TResult)(Func(Of TResult))
|
Initializes a new Task(Of TResult) with the specified function.
|
|
Task(Of TResult)(Func(Of TResult), CancellationToken)
|
Initializes a new Task(Of TResult) with the specified function.
|
|
Task(Of TResult)(Func(Of TResult), TaskCreationOptions)
|
Initializes a new Task(Of TResult) with the specified function and creation options.
|
|
Task(Of TResult)(Func(Of Object, TResult), Object)
|
Initializes a new Task(Of TResult) with the specified function and state.
|
|
Task(Of TResult)(Func(Of TResult), CancellationToken, TaskCreationOptions)
|
Initializes a new Task(Of TResult) with the specified function and creation options.
|
|
Task(Of TResult)(Func(Of Object, TResult), Object, CancellationToken)
|
Initializes a new Task(Of TResult) with the specified action, state, and options.
|
|
Task(Of TResult)(Func(Of Object, TResult), Object, TaskCreationOptions)
|
Initializes a new Task(Of TResult) with the specified action, state, and options.
|
|
Task(Of TResult)(Func(Of Object, TResult), Object, CancellationToken, TaskCreationOptions)
|
Initializes a new Task(Of TResult) with the specified action, state, and options.
|
Top