ConstraintStatus Enum

Summary

ConstraintStatus represents the status of a ConstraintResult returned by a Constraint being applied to an actual value.
Namespace
TCLite.Constraints
Interfaces
  • IComparable
  • IFormattable
  • IConvertible
Base Types
  • object
  • ValueType
  • Enum
graph BT Type-->Base0["Enum"] Base0-->Base1["ValueType"] Base1-->Base2["object"] Type-.->Interface0["IComparable"] Type-.->Interface1["IFormattable"] Type-.->Interface2["IConvertible"] Type["ConstraintStatus"] class Type type-node

Syntax

public enum ConstraintStatus

Fields

Name Constant Value Summary
Error 3
An error occurred in applying the constraint (reserved for future use)
static
Failure 2
The constraint failed
static
Success 1
The constraint succeeded
static
Unknown 0
The status has not yet been set
static