ModelBinderProviderCollection.RegisterBinderForType Method

Definition

Adds a model binder provider to the collection for a non-generic type.

Overloads

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))

Parameters

modelType
Type

The model type.

modelBinderFactory
Func<IModelBinder>

The model binder factory.

Applies to

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)

Parameters

modelType
Type

The model type.

modelBinder
IModelBinder

The model binder.

Applies to