Validation rule used to check that a list contains only specified values.
Inherits: IValidationRule
Description
The InclidedRule class allows you to check that a list contains only specified values.
Constructors
Creates a new validation rule and sets its values.
public
IncludedRule(params object[] values)
- values: object[] - list of constants that value must be included to
Instance methods
Validate
Validates a given value against this rule.
public
void Validate(string path, Schema schema, object value, List<ValidationResult> results)
- path: string - path to the value in dot notation.
- schema: Schema - schema this rule is called from
- value: object - value to be validated.
- results: List<ValidationResult> - list with validation results.
Examples
var schema = new Schema().WithRule(new IncludedRule(1, 2, 3));
schema.Validate(2); // Result: no errors
schema.Validate(10); // Result: 10 must be one of 1, 2, 3