Share via


SimpleModelBinderProvider Constructor

 

Initializes a new instance of the SimpleModelBinderProvider class.

Namespace:   Microsoft.Web.Mvc.ModelBinding
Assembly:  Microsoft.Web.Mvc (in Microsoft.Web.Mvc.dll)

Overload List

Name Description
System_CAPS_pubmethod SimpleModelBinderProvider(Type, Func<IExtensibleModelBinder>)

Initializes a new instance of the SimpleModelBinderProvider class by using the specified model type and the model binder factory.

System_CAPS_pubmethod SimpleModelBinderProvider(Type, IExtensibleModelBinder)

Initializes a new instance of the SimpleModelBinderProvider class by using the specified model type and the model binder.

See Also

SimpleModelBinderProvider Class
Microsoft.Web.Mvc.ModelBinding Namespace

Return to top

SimpleModelBinderProvider Constructor (Type, Func<IExtensibleModelBinder>)

Initializes a new instance of the SimpleModelBinderProvider class by using the specified model type and the model binder factory.

Syntax

public SimpleModelBinderProvider(
    Type modelType,
    Func<IExtensibleModelBinder> modelBinderFactory
)
public:
SimpleModelBinderProvider(
    Type^ modelType,
    Func<IExtensibleModelBinder^>^ modelBinderFactory
)
new : 
        modelType:Type *
        modelBinderFactory:Func<IExtensibleModelBinder> -> SimpleModelBinderProvider
Public Sub New (
    modelType As Type,
    modelBinderFactory As Func(Of IExtensibleModelBinder)
)

Parameters

Return to top

SimpleModelBinderProvider Constructor (Type, IExtensibleModelBinder)

Initializes a new instance of the SimpleModelBinderProvider class by using the specified model type and the model binder.

Syntax

public SimpleModelBinderProvider(
    Type modelType,
    IExtensibleModelBinder modelBinder
)
public:
SimpleModelBinderProvider(
    Type^ modelType,
    IExtensibleModelBinder^ modelBinder
)
new : 
        modelType:Type *
        modelBinder:IExtensibleModelBinder -> SimpleModelBinderProvider
Public Sub New (
    modelType As Type,
    modelBinder As IExtensibleModelBinder
)

Parameters

Return to top