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
です。
メタデータのプロパティ名がコンテナー型のプロパティの 1 つを参照していません。
適用対象
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>
属性。
戻り値
検証コントロール。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET