AssociatedValidatorProvider.GetValidators 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取模型的验证程序。
重载
GetValidators(ModelMetadata, ModelBindingExecutionContext) |
使用指定的元数据和执行上下文来获取模型的验证程序。 |
GetValidators(ModelMetadata, ModelBindingExecutionContext, IEnumerable<Attribute>) |
在派生的类型中时,将使用指定元数据、执行上下文和特性获取模型的验证程序。 |
GetValidators(ModelMetadata, ModelBindingExecutionContext)
使用指定的元数据和执行上下文来获取模型的验证程序。
public:
override System::Collections::Generic::IEnumerable<System::Web::ModelBinding::ModelValidator ^> ^ GetValidators(System::Web::ModelBinding::ModelMetadata ^ metadata, System::Web::ModelBinding::ModelBindingExecutionContext ^ context);
public override sealed System.Collections.Generic.IEnumerable<System.Web.ModelBinding.ModelValidator> GetValidators (System.Web.ModelBinding.ModelMetadata metadata, System.Web.ModelBinding.ModelBindingExecutionContext context);
override this.GetValidators : System.Web.ModelBinding.ModelMetadata * System.Web.ModelBinding.ModelBindingExecutionContext -> seq<System.Web.ModelBinding.ModelValidator>
Public Overrides NotOverridable Function GetValidators (metadata As ModelMetadata, context As ModelBindingExecutionContext) As IEnumerable(Of ModelValidator)
参数
- metadata
- ModelMetadata
元数据。
- context
- ModelBindingExecutionContext
该执行上下文。
返回
验证程序。
例外
metadata
或 context
参数为 null
。
在元数据中的属性名不引用容器类的其中的属性。
适用于
GetValidators(ModelMetadata, ModelBindingExecutionContext, IEnumerable<Attribute>)
在派生的类型中时,将使用指定元数据、执行上下文和特性获取模型的验证程序。
protected:
abstract System::Collections::Generic::IEnumerable<System::Web::ModelBinding::ModelValidator ^> ^ GetValidators(System::Web::ModelBinding::ModelMetadata ^ metadata, System::Web::ModelBinding::ModelBindingExecutionContext ^ context, System::Collections::Generic::IEnumerable<Attribute ^> ^ attributes);
protected abstract System.Collections.Generic.IEnumerable<System.Web.ModelBinding.ModelValidator> GetValidators (System.Web.ModelBinding.ModelMetadata metadata, System.Web.ModelBinding.ModelBindingExecutionContext context, System.Collections.Generic.IEnumerable<Attribute> attributes);
override this.GetValidators : System.Web.ModelBinding.ModelMetadata * System.Web.ModelBinding.ModelBindingExecutionContext * seq<Attribute> -> seq<System.Web.ModelBinding.ModelValidator>
Protected MustOverride Function GetValidators (metadata As ModelMetadata, context As ModelBindingExecutionContext, attributes As IEnumerable(Of Attribute)) As IEnumerable(Of ModelValidator)
参数
- metadata
- ModelMetadata
元数据。
- context
- ModelBindingExecutionContext
该执行上下文。
- attributes
- IEnumerable<Attribute>
属性。
返回
验证程序。