C# Class ExpressiveAnnotations.Attributes.AssertThatAttribute

Inheritance: System.ComponentModel.DataAnnotations.ValidationAttribute
Datei anzeigen Open project: jwaliszko/ExpressiveAnnotations Class Usage Examples

Public Methods

Method Description
AssertThatAttribute ( string expression ) : System

Initializes a new instance of the AssertThatAttribute class.

Protected Methods

Method Description
IsValidInternal ( object value, System.ComponentModel.DataAnnotations.ValidationContext validationContext ) : System.ComponentModel.DataAnnotations.ValidationResult

Validates a specified value with respect to the associated validation attribute. Internally used by the ExpressiveAttribute.IsValid(object,System.ComponentModel.DataAnnotations.ValidationContext) method.

Method Details

AssertThatAttribute() public method

Initializes a new instance of the AssertThatAttribute class.
public AssertThatAttribute ( string expression ) : System
expression string The logical expression based on which assertion condition is computed.
return System

IsValidInternal() protected method

Validates a specified value with respect to the associated validation attribute. Internally used by the ExpressiveAttribute.IsValid(object,System.ComponentModel.DataAnnotations.ValidationContext) method.
protected IsValidInternal ( object value, System.ComponentModel.DataAnnotations.ValidationContext validationContext ) : System.ComponentModel.DataAnnotations.ValidationResult
value object The value to validate.
validationContext System.ComponentModel.DataAnnotations.ValidationContext The validation context.
return System.ComponentModel.DataAnnotations.ValidationResult