AssociatedValidatorProvider.GetValidators Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GetValidators(ModelMetadata, ControllerContext) |
Gets the validators for the model using the metadata and controller context. |
GetValidators(ModelMetadata, ControllerContext, IEnumerable<Attribute>) |
Gets the validators for the model using the metadata, the controller context, and a list of attributes. |
GetValidators(ModelMetadata, ControllerContext)
Gets the validators for the model using the metadata and controller context.
public override sealed System.Collections.Generic.IEnumerable<System.Web.Mvc.ModelValidator> GetValidators (System.Web.Mvc.ModelMetadata metadata, System.Web.Mvc.ControllerContext context);
override this.GetValidators : System.Web.Mvc.ModelMetadata * System.Web.Mvc.ControllerContext -> seq<System.Web.Mvc.ModelValidator>
Public Overrides NotOverridable Function GetValidators (metadata As ModelMetadata, context As ControllerContext) As IEnumerable(Of ModelValidator)
Parameters
- metadata
- ModelMetadata
The metadata.
- context
- ControllerContext
The controller context.
Returns
The validators for the model.
Applies to
GetValidators(ModelMetadata, ControllerContext, IEnumerable<Attribute>)
Gets the validators for the model using the metadata, the controller context, and a list of attributes.
protected abstract System.Collections.Generic.IEnumerable<System.Web.Mvc.ModelValidator> GetValidators (System.Web.Mvc.ModelMetadata metadata, System.Web.Mvc.ControllerContext context, System.Collections.Generic.IEnumerable<Attribute> attributes);
override this.GetValidators : System.Web.Mvc.ModelMetadata * System.Web.Mvc.ControllerContext * seq<Attribute> -> seq<System.Web.Mvc.ModelValidator>
Protected MustOverride Function GetValidators (metadata As ModelMetadata, context As ControllerContext, attributes As IEnumerable(Of Attribute)) As IEnumerable(Of ModelValidator)
Parameters
- metadata
- ModelMetadata
The metadata.
- context
- ControllerContext
The controller context.
- attributes
- IEnumerable<Attribute>
The list of attributes.
Returns
The validators for the model.