Share via


ModelMetadata.GetValidators Method

Gets a list of validators for the model.

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

Syntax

'Declaration
Public Overridable Function GetValidators ( _
    context As ControllerContext _
) As IEnumerable(Of ModelValidator)
public virtual IEnumerable<ModelValidator> GetValidators(
    ControllerContext context
)
public:
virtual IEnumerable<ModelValidator^>^ GetValidators(
    ControllerContext^ context
)

Parameters

Return Value

Type: System.Collections.Generic.IEnumerable<ModelValidator>
A list of validators for the model.

Remarks

Use this method to retrieve the validators that are applicable for this model. The validators can be used to run server-side validation on this model or to generate the client-side validation rules.

See Also

Reference

ModelMetadata Class

System.Web.Mvc Namespace