GenericModelBinderProvider 构造函数

定义

初始化 GenericModelBinderProvider 类的新实例。

重载

GenericModelBinderProvider(Type, Func<Type[],IModelBinder>)

使用指定的模型类型和模型联编程序工厂初始化 GenericModelBinderProvider 类的新实例。

GenericModelBinderProvider(Type, Type)

使用指定的模型类型和模型联编程序类型初始化 GenericModelBinderProvider 类的新实例。

GenericModelBinderProvider(Type, IModelBinder)

使用指定的模型类型和模型联编程序初始化 GenericModelBinderProvider 类的新实例。

GenericModelBinderProvider(Type, Func<Type[],IModelBinder>)

使用指定的模型类型和模型联编程序工厂初始化 GenericModelBinderProvider 类的新实例。

public:
 GenericModelBinderProvider(Type ^ modelType, Func<cli::array <Type ^> ^, System::Web::ModelBinding::IModelBinder ^> ^ modelBinderFactory);
public GenericModelBinderProvider (Type modelType, Func<Type[],System.Web.ModelBinding.IModelBinder> modelBinderFactory);
new System.Web.ModelBinding.GenericModelBinderProvider : Type * Func<Type[], System.Web.ModelBinding.IModelBinder> -> System.Web.ModelBinding.GenericModelBinderProvider
Public Sub New (modelType As Type, modelBinderFactory As Func(Of Type(), IModelBinder))

参数

modelType
Type

模型类型。

modelBinderFactory
Func<Type[],IModelBinder>

模型联编程序工厂。

例外

modelTypemodelBinderFactorynull

适用于

GenericModelBinderProvider(Type, Type)

使用指定的模型类型和模型联编程序类型初始化 GenericModelBinderProvider 类的新实例。

public:
 GenericModelBinderProvider(Type ^ modelType, Type ^ modelBinderType);
public GenericModelBinderProvider (Type modelType, Type modelBinderType);
new System.Web.ModelBinding.GenericModelBinderProvider : Type * Type -> System.Web.ModelBinding.GenericModelBinderProvider
Public Sub New (modelType As Type, modelBinderType As Type)

参数

modelType
Type

模型类型。

modelBinderType
Type

模型绑定器类型。

例外

modelTypemodelBinderTypenull

适用于

GenericModelBinderProvider(Type, IModelBinder)

使用指定的模型类型和模型联编程序初始化 GenericModelBinderProvider 类的新实例。

public:
 GenericModelBinderProvider(Type ^ modelType, System::Web::ModelBinding::IModelBinder ^ modelBinder);
public GenericModelBinderProvider (Type modelType, System.Web.ModelBinding.IModelBinder modelBinder);
new System.Web.ModelBinding.GenericModelBinderProvider : Type * System.Web.ModelBinding.IModelBinder -> System.Web.ModelBinding.GenericModelBinderProvider
Public Sub New (modelType As Type, modelBinder As IModelBinder)

参数

modelType
Type

模型类型。

modelBinder
IModelBinder

模型联编程序。

例外

modelTypemodelBindernull

适用于