ModelBinderProviderCollection.RegisterBinderForType メソッド
定義
非ジェネリック型のコレクションにモデル バインダー プロバイダーを追加します。Adds a model binder provider to the collection for a non-generic type.
オーバーロード
RegisterBinderForType(Type, Func<IModelBinder>) |
指定されたモデルの型とモデル バインダー ファクトリを使用して非ジェネリック型のコレクションにモデル バインダー プロバイダーを追加します。Adds a model binder provider to the collection for a non-generic type by using the specified model type and model binder factory. |
RegisterBinderForType(Type, IModelBinder) |
指定されたモデルの型とモデル バインダーを使用して非ジェネリック型のコレクションにモデル バインダー プロバイダーを追加します。Adds a model binder provider to the collection for a non-generic type by using the specified model type and model binder. |
RegisterBinderForType(Type, Func<IModelBinder>)
指定されたモデルの型とモデル バインダー ファクトリを使用して非ジェネリック型のコレクションにモデル バインダー プロバイダーを追加します。Adds a model binder provider to the collection for a non-generic type by using the specified model type and model binder factory.
public:
void RegisterBinderForType(Type ^ modelType, Func<System::Web::ModelBinding::IModelBinder ^> ^ modelBinderFactory);
public void RegisterBinderForType (Type modelType, Func<System.Web.ModelBinding.IModelBinder> modelBinderFactory);
member this.RegisterBinderForType : Type * Func<System.Web.ModelBinding.IModelBinder> -> unit
Public Sub RegisterBinderForType (modelType As Type, modelBinderFactory As Func(Of IModelBinder))
パラメーター
- modelType
- Type
モデル型。The model type.
- modelBinderFactory
- Func<IModelBinder>
モデル バインダー ファクトリ。The model binder factory.
RegisterBinderForType(Type, IModelBinder)
指定されたモデルの型とモデル バインダーを使用して非ジェネリック型のコレクションにモデル バインダー プロバイダーを追加します。Adds a model binder provider to the collection for a non-generic type by using the specified model type and model binder.
public:
void RegisterBinderForType(Type ^ modelType, System::Web::ModelBinding::IModelBinder ^ modelBinder);
public void RegisterBinderForType (Type modelType, System.Web.ModelBinding.IModelBinder modelBinder);
member this.RegisterBinderForType : Type * System.Web.ModelBinding.IModelBinder -> unit
Public Sub RegisterBinderForType (modelType As Type, modelBinder As IModelBinder)
パラメーター
- modelType
- Type
モデル型。The model type.
- modelBinder
- IModelBinder
モデル バインダー。The model binder.