Task(TResult) Constructor (Func(TResult), TaskCreationOptions)

Task(Of TResult) Constructor (Func(Of TResult), TaskCreationOptions)

[ 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 and creation options.

Namespace:  System.Threading.Tasks
Assembly:  mscorlib (in mscorlib.dll)

'Declaration
Public Sub New ( _
	function As Func(Of TResult), _
	creationOptions As TaskCreationOptions _
)

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.
creationOptions
Type: System.Threading.Tasks.TaskCreationOptions
The TaskCreationOptions used to customize the task's behavior.

ExceptionCondition
ArgumentOutOfRangeException

The creationOptions argument specifies an invalid value for TaskCreationOptions.

ArgumentNullException

The function argument is null.

Windows Phone OS

Supported in: 8.1, 8.0

Show:
© 2017 Microsoft