ModelBinderProviderCollection.RegisterBinderForGenericType 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.
Adds a model binder provider to the collection for a generic type.
Overloads
RegisterBinderForGenericType(Type, Func<Type[],IModelBinder>) |
Adds a model binder to the collection for a generic type by using the specified model type and model binder factory. |
RegisterBinderForGenericType(Type, Type) |
Adds a model binder provider to the collection for a generic type by using the specified model type and model binder type. |
RegisterBinderForGenericType(Type, IModelBinder) |
Adds a model binder provider to the collection for a generic type by using the specified model type and model binder. |
RegisterBinderForGenericType(Type, Func<Type[],IModelBinder>)
Adds a model binder to the collection for a generic type by using the specified model type and model binder factory.
public:
void RegisterBinderForGenericType(Type ^ modelType, Func<cli::array <Type ^> ^, System::Web::ModelBinding::IModelBinder ^> ^ modelBinderFactory);
public void RegisterBinderForGenericType (Type modelType, Func<Type[],System.Web.ModelBinding.IModelBinder> modelBinderFactory);
member this.RegisterBinderForGenericType : Type * Func<Type[], System.Web.ModelBinding.IModelBinder> -> unit
Public Sub RegisterBinderForGenericType (modelType As Type, modelBinderFactory As Func(Of Type(), IModelBinder))
Parameters
- modelType
- Type
The model type.
- modelBinderFactory
- Func<Type[],IModelBinder>
The model binder factory.
Applies to
RegisterBinderForGenericType(Type, Type)
Adds a model binder provider to the collection for a generic type by using the specified model type and model binder type.
public:
void RegisterBinderForGenericType(Type ^ modelType, Type ^ modelBinderType);
public void RegisterBinderForGenericType (Type modelType, Type modelBinderType);
member this.RegisterBinderForGenericType : Type * Type -> unit
Public Sub RegisterBinderForGenericType (modelType As Type, modelBinderType As Type)
Parameters
- modelType
- Type
The model type.
- modelBinderType
- Type
The model binder type.
Applies to
RegisterBinderForGenericType(Type, IModelBinder)
Adds a model binder provider to the collection for a generic type by using the specified model type and model binder.
public:
void RegisterBinderForGenericType(Type ^ modelType, System::Web::ModelBinding::IModelBinder ^ modelBinder);
public void RegisterBinderForGenericType (Type modelType, System.Web.ModelBinding.IModelBinder modelBinder);
member this.RegisterBinderForGenericType : Type * System.Web.ModelBinding.IModelBinder -> unit
Public Sub RegisterBinderForGenericType (modelType As Type, modelBinder As IModelBinder)
Parameters
- modelType
- Type
The model type.
- modelBinder
- IModelBinder
The model binder.