Task<TResult> Constructor (Func<Object, TResult>, Object, TaskCreationOptions)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Initializes a new Task<TResult> with the specified action, state, and options.
Namespace: System.Threading.Tasks
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Sub New ( _
function As Func(Of Object, TResult), _
state As Object, _
creationOptions As TaskCreationOptions _
)
public Task(
Func<Object, TResult> function,
Object state,
TaskCreationOptions creationOptions
)
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.
- creationOptions
Type: System.Threading.Tasks.TaskCreationOptions
The TaskCreationOptions used to customize the task's behavior.
Exceptions
Exception | Condition |
---|---|
ArgumentOutOfRangeException | The creationOptions argument specifies an invalid value for TaskCreationOptions. |
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