Namespace:
System.Threading.Tasks
Assembly:
System.Threading (in System.Threading.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Sub New ( _
function As Func(Of TResult), _
cancellationToken As CancellationToken _
) |
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.
- cancellationToken
- Type: System.Threading..::.CancellationToken
The CancellationToken to be assigned to this task.
Exceptions
Exception | Condition |
---|
System..::.ArgumentException |
The function argument is null.
|
System..::.ObjectDisposedException | The provided CancellationToken
has already been disposed.
|
See Also