CreationOptions Property

Task Parallel System.Threading

Gets the TaskCreationOptions value of this TaskFactory.

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

Syntax

Visual Basic (Declaration)
Public ReadOnly Property CreationOptions As TaskCreationOptions
C#
public TaskCreationOptions CreationOptions { get; }

Remarks

This property returns the default creation options for this factory. They will be used to create all tasks unless other options are explicitly specified during calls to this factory's methods.

See Also