The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
Task<TResult> Constructor (Func<Object^, TResult>^, Object^)
.NET Framework (current version)
Initializes a new Task<TResult> with the specified function and state.
Assembly: mscorlib (in mscorlib.dll)
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.
| Exception | Condition |
|---|---|
| ArgumentNullException | The function argument is null. |
Rather than calling this constructor, the most common way to instantiate a Task<TResult> object and launch a task is by calling the static TaskFactory<TResult>::StartNew(Func<Object^, TResult>^, Object^) method. The only advantage offered by this constructor is that it allows object instantiation to be separated from task invocation.
Universal Windows Platform
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 5.0
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 5.0
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Show: