Task<TResult> Constructor (Func<TResult>, CancellationToken)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Initializes a new Task<TResult> with the specified function.
Namespace: System.Threading.Tasks
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Sub New ( _
function As Func(Of TResult), _
cancellationToken As CancellationToken _
)
public Task(
Func<TResult> function,
CancellationToken cancellationToken
)
Parameters
- function
Type: System.Func<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.
- cancellationToken
Type: System.Threading.CancellationToken
The CancellationToken to be assigned to this task.
Exceptions
Exception | Condition |
---|---|
ObjectDisposedException | The CancellationTokenSource that created cancellationToken has already been disposed. |
ArgumentNullException | The function argument is null. |
Version Information
Silverlight
Supported in: 5
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also