TaskFactory Constructor (TaskCreationOptions, TaskContinuationOptions)

Task Parallel System.Threading

Initializes a TaskFactory instance with the specified configuration.

Namespace:  System.Threading.Tasks
Assembly:  System.Threading (in System.Threading.dll)

Syntax

Visual Basic (Declaration)
Public Sub New ( _
	creationOptions As TaskCreationOptions, _
	continuationOptions As TaskContinuationOptions _
)
C#
public TaskFactory(
	TaskCreationOptions creationOptions,
	TaskContinuationOptions continuationOptions
)

Parameters

creationOptions
Type: System.Threading.Tasks..::.TaskCreationOptions
The default TaskCreationOptions to use when creating tasks with this TaskFactory.
continuationOptions
Type: System.Threading.Tasks..::.TaskContinuationOptions
The default TaskContinuationOptions to use when creating continuation tasks with this TaskFactory.

Remarks

With this constructor, the TaskCreationOptions property is initialized to creationOptions, the TaskContinuationOptions property is initialized to continuationOptions, and the TaskScheduler property is initialized to the current scheduler (see TaskScheduler.Current).

Exceptions

ExceptionCondition
System..::.ArgumentOutOfRangeException The exception that is thrown when the creationOptions argument or the continuationOptions argument specifies an invalid value.

See Also