Share via


IClientValidatable Interface

Provides a way for the ASP.NET MVC validation framework to discover at run time whether a validator has support for client validation.

Namespace:  System.Web.Mvc
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

Syntax

'Declaration
Public Interface IClientValidatable
'Usage
Dim instance As IClientValidatable
public interface IClientValidatable
public interface class IClientValidatable
public interface IClientValidatable

The IClientValidatable type exposes the following members.

Methods

  Name Description
Public method GetClientValidationRules When implemented in a class, returns client validation rules for that class.

Top

Remarks

The Models\AccountModels file that is created as part of a new ASP.NET MVC project contains the ValidatePasswordLengthAttribute class that implements the IClientValidatable interface. This file provides an example of how to implement the IClientValidatable interface.

See Also

Reference

System.Web.Mvc Namespace