Task(Of TResult) Constructor (Func(Of Object, TResult), Object, CancellationToken)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Initializes a new Task(Of TResult) with the specified action, state, and options.
Assembly: mscorlib (in mscorlib.dll)
'Declaration Public Sub New ( _ function As Func(Of Object, TResult), _ state As Object, _ cancellationToken As CancellationToken _ )
Parameters
- function
- Type: System.Func(Of Object, TResult)
The delegate that represents the code to execute in the task. When the function has completed, the task's Result property will be set to return the result value of the function.
- state
- Type: System.Object
An object representing data to be used by the function.
- cancellationToken
- Type: System.Threading.CancellationToken
The CancellationToken to be assigned to the new task.
| Exception | Condition |
|---|---|
| ObjectDisposedException | The CancellationTokenSource that created cancellationToken has already been disposed. |
| ArgumentNullException | The function argument is null. |
Show: