LowestBreakIteration Property

Task Parallel System.Threading

Gets the index of the lowest iteration from which Break()()() was called.

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

Syntax

Visual Basic (Declaration)
Public ReadOnly Property LowestBreakIteration As Nullable(Of Long)
C#
public Nullable<long> LowestBreakIteration { get; }

Remarks

If Break()()() was not employed, this property will return null.

See Also