Interface IValidate<T>
Defines the signature for a component that validates instances of T.
Namespace: EPiServer.Validation
Assembly: EPiServer.Framework.dll
Version: 10.10.4Syntax
public interface IValidate<T> : IValidateType Parameters
| Name | Description | 
|---|---|
| T | 
Methods
Validate(T)
Validates the specified instance.
Declaration
IEnumerable<ValidationError> Validate(T instance)Parameters
| Type | Name | Description | 
|---|---|---|
| T | instance | The instance. | 
Returns
| Type | Description | 
|---|---|
| System.Collections.Generic.IEnumerable<ValidationError> | 
