Click or drag to resize
FdfResultCollection Class
Represents a collection of validation results.
Inheritance Hierarchy
SystemObject
  System.Collections.GenericListFdfResult
    FDF.Common.RuntimeFdfResultCollection

Namespace: FDF.Common.Runtime
Assembly: FDF.Common (in FDF.Common.dll) Version: 3.0.0.0
Syntax
public sealed class FdfResultCollection : List<FdfResult>, 
	IFdfQueryable

The FdfResultCollection type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyCount
Public propertyHasErrors
Returns True if results contains errors, otherwise returns False.
Public propertyHasErrorsOrWarnings
Returns True if results contains either errors or warnings, otherwise returns False.
Public propertyHasWarnings
Returns True if results contains warnings, otherwise returns False.
Public propertyIsEmpty
Returns True if object instance is considered empty, otherwise returns False.
Public propertyItems
Top
Methods
  NameDescription
Public methodAdd
Public methodIsValid
Returns True if object instance is considered valid, otherwise returns False.
Public methodSetParent
Top
Operators
  NameDescription
Public operatorStatic memberAddition(FdfResultCollection, FdfResult)
The addition operator causes the first operand to be added to the second.
Public operatorStatic memberAddition(FdfResultCollection, FdfResultCollection)
The addition operator causes the first operand to be added to the second.
Top
Remarks
Implemented results comparer sorts items in the following order based on result severity: errors first, then warnings, and finally informations.
See Also