ContinuationOptions Property

Task Parallel System.Threading

Gets the TaskContinuationOptions value of this TaskFactory.

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

Syntax

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

Remarks

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

See Also