GenericModelBinderProvider 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 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>
模型联编程序工厂。
例外
modelType
或 modelBinderFactory
为 null
。
适用于
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
模型绑定器类型。
例外
modelType
或 modelBinderType
为 null
。
适用于
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
模型联编程序。
例外
modelType
或 modelBinder
为 null
。