Provides completion status on the execution of a System.Threading.Tasks.Parallel loop.
See Also: ParallelLoopResult Members
If ParallelLoopResult.IsCompleted returns true, then the loop ran to completion, such that all iterations of the loop were executed. If ParallelLoopResult.IsCompleted returns false and ParallelLoopResult.LowestBreakIteration returns null, a call to ParallelLoopState.Stop was used to end the loop prematurely. If ParallelLoopResult.IsCompleted returns false and ParallelLoopResult.LowestBreakIteration returns a non-null integral value, ParallelLoopState.Break was used to end the loop prematurely.