Task<TResult> Constructor (Func<Object^, TResult>^, Object^, CancellationToken)
Initializes a new Task<TResult> with the specified action, state, and options.
Assembly: mscorlib (in mscorlib.dll)
public:
Task(
Func<Object^, TResult>^ function,
Object^ state,
CancellationToken cancellationToken
)
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 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. |
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^, CancellationToken) method. The only advantage offered by this constructor is that it allows object instantiation to be separated from task invocation.
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