Class BoolIsSetValidationRule
Rule used to validate that a boolean type component's value (e.g. checkbox) is true
.
public class BoolIsSetValidationRule : ValidationRule<bool>
- Inheritance
-
objectValidationRule<bool>BoolIsSetValidationRule
- Inherited Members
- Extension Methods
Methods
GetTitle()
Gets a title for this instance of boolean validation rule.
public override string GetTitle()
Returns
- string
Returns text describing the validation rule.
Validate(bool)
Returns true if given value is true
.
protected override bool Validate(bool value)
Parameters
value
boolForm component's value.
Returns
- bool