London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!

Interface IValidate<T>

Defines the signature for a component that validates instances of T.

Namespace: EPiServer.Validation
Assembly: EPiServer.Framework.dll
Version: 8.11.0
Syntax
public interface IValidate<T> : IValidate
Type 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>