0 out of 1 rated this helpful - Rate this topic

ParallelLoopResult Structure

Provides completion status on the execution of a Parallel loop.

Namespace:  System.Threading.Tasks
Assembly:  mscorlib (in mscorlib.dll)
public struct ParallelLoopResult

The ParallelLoopResult type exposes the following members.

  Name Description
Public property IsCompleted Gets whether the loop ran to completion, such that all iterations of the loop were executed and the loop didn't receive a request to end prematurely.
Public property LowestBreakIteration Gets the index of the lowest iteration from which Break was called.
Top
  Name Description
Public method Equals Indicates whether this instance and a specified object are equal. (Inherited from ValueType.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetHashCode Returns the hash code for this instance. (Inherited from ValueType.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method ToString Returns the fully qualified type name of this instance. (Inherited from ValueType.)
Top

If IsCompleted returns true, then the loop ran to completion, such that all iterations of the loop were executed. If IsCompleted returns false and LowestBreakIteration returns null, a call to Stop was used to end the loop prematurely. If IsCompleted returns false and LowestBreakIteration returns a non-null integral value, Break was used to end the loop prematurely.

.NET Framework

Supported in: 4

.NET Framework Client Profile

Supported in: 4

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

All public members of ParallelLoopResult are thread safe and may be called from multiple threads concurrently.

Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ