Interface IValidationRule
Defines a method to validate an arbitrary object and return a result.
Namespace: Algenta.Colectica.Model.Validation
Assembly: Algenta.Colectica.Model.dll
Syntax
public interface IValidationRule
Methods
Validate(object)
Validates the specified object.
Declaration
ValidationCheckResult Validate(object value)
Parameters
Type | Name | Description |
---|---|---|
object | value | The object to be validated. |
Returns
Type | Description |
---|---|
ValidationCheckResult | The result of the validation. |