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>
屬性。
傳回
驗證程式。