Represents a collection of validation results. This class cannot be inherited.


Namespace: FDF.Common.Runtime
Assembly: FDF.Common (in FDF.Common.dll)

Syntax

Visual Basic (Declaration)
Public NotInheritable Class FdfResultCollection
    Inherits List(Of FdfResult)
    Implements IFdfQueryable
C#
public sealed class FdfResultCollection : List<FdfResult>, IFdfQueryable
C++
ref class FdfResultCollection sealed  : List<FdfResult>, IFdfQueryable
J#
public final class FdfResultCollection extends List<FdfResult> implements IFdfQueryable
JScript
public final class FdfResultCollection extends List<FdfResult>, IFdfQueryable

Remarks

Implemented results comparer sorts items in the following order based on result severity: errors first, then warnings, and finally informations.

Inheritance Hierarchy

System.Object
   System.Collections.Generic.List<T>
      FDF.Common.Runtime.FdfResultCollection

Thread Safety

Public static (Shared in Visual Basic)staticShared members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

See Also