System.Threading.Tasks.ParallelLoopState
namespace System.Threading.Tasks
{
public class ParallelLoopState
{
public bool IsExceptional { get; }
public bool IsStopped { get; }
public long? LowestBreakIteration { get; }
public bool ShouldExitCurrentIteration { get; }
public void Break();
public void Stop();
}
}