Task(TResult) Constructor (Func(Object, TResult), Object)

Task<TResult> Constructor (Func<Object, TResult>, Object)

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Initializes a new Task<TResult> with the specified function and state.

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

public Task(
	Func<Object, TResult> function,
	Object state
)

Parameters

function
Type: System.Func<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 action.

ExceptionCondition
ArgumentNullException

The function argument is null.

Windows Phone OS

Supported in: 8.1, 8.0

Show:
© 2017 Microsoft