Task(Of TResult) Constructor (Func(Of TResult))
[ 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 function.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- function
- Type: System.Func(Of 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.
| Exception | Condition |
|---|---|
| ArgumentNullException | The function argument is null. |
Show: