This topic has not yet been rated - Rate this topic

Task Constructor (Action, TaskCreationOptions)

Initializes a new Task with the specified action and creation options.

Namespace:  System.Threading.Tasks
Assembly:  mscorlib (in mscorlib.dll)
'Declaration
Public Sub New ( _
	action As Action, _
	creationOptions As TaskCreationOptions _
)

Parameters

action
Type: System.Action
The delegate that represents the code to execute in the task.
creationOptions
Type: System.Threading.Tasks.TaskCreationOptions
The TaskCreationOptions used to customize the Task's behavior.
ExceptionCondition
ArgumentNullException

The action argument is null.

ArgumentOutOfRangeException

The creationOptions argument specifies an invalid value for TaskCreationOptions.

Silverlight

Supported in: 5

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.