Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets the validators for the model using the metadata, the controller context, and a list of attributes.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Syntax
'Declaration
Protected MustOverride Function GetValidators ( _
metadata As ModelMetadata, _
context As ControllerContext, _
attributes As IEnumerable(Of Attribute) _
) As IEnumerable(Of ModelValidator)
protected abstract IEnumerable<ModelValidator> GetValidators(
ModelMetadata metadata,
ControllerContext context,
IEnumerable<Attribute> attributes
)
protected:
virtual IEnumerable<ModelValidator^>^ GetValidators(
ModelMetadata^ metadata,
ControllerContext^ context,
IEnumerable<Attribute^>^ attributes
) abstract
Parameters
- metadata
Type: System.Web.Mvc.ModelMetadata
The metadata.
- context
Type: System.Web.Mvc.ControllerContext
The controller context.
- attributes
Type: System.Collections.Generic.IEnumerable<Attribute>
The list of attributes.
Return Value
Type: System.Collections.Generic.IEnumerable<ModelValidator>
The validators for the model.