SimpleModelBinderProvider 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 SimpleModelBinderProvider 类的新实例。
重载
SimpleModelBinderProvider(Type, Func<IModelBinder>) |
使用指定的模型类型和模型联编程序工厂初始化 SimpleModelBinderProvider 类的新实例。 |
SimpleModelBinderProvider(Type, IModelBinder) |
使用指定的模型类型和模型联编程序类型初始化 SimpleModelBinderProvider 类的新实例。 |
SimpleModelBinderProvider(Type, Func<IModelBinder>)
使用指定的模型类型和模型联编程序工厂初始化 SimpleModelBinderProvider 类的新实例。
public:
SimpleModelBinderProvider(Type ^ modelType, Func<System::Web::ModelBinding::IModelBinder ^> ^ modelBinderFactory);
public SimpleModelBinderProvider (Type modelType, Func<System.Web.ModelBinding.IModelBinder> modelBinderFactory);
new System.Web.ModelBinding.SimpleModelBinderProvider : Type * Func<System.Web.ModelBinding.IModelBinder> -> System.Web.ModelBinding.SimpleModelBinderProvider
Public Sub New (modelType As Type, modelBinderFactory As Func(Of IModelBinder))
参数
- modelType
- Type
模型类型。
- modelBinderFactory
- Func<IModelBinder>
模型联编程序工厂。
适用于
SimpleModelBinderProvider(Type, IModelBinder)
使用指定的模型类型和模型联编程序类型初始化 SimpleModelBinderProvider 类的新实例。
public:
SimpleModelBinderProvider(Type ^ modelType, System::Web::ModelBinding::IModelBinder ^ modelBinder);
public SimpleModelBinderProvider (Type modelType, System.Web.ModelBinding.IModelBinder modelBinder);
new System.Web.ModelBinding.SimpleModelBinderProvider : Type * System.Web.ModelBinding.IModelBinder -> System.Web.ModelBinding.SimpleModelBinderProvider
Public Sub New (modelType As Type, modelBinder As IModelBinder)
参数
- modelType
- Type
模型类型。
- modelBinder
- IModelBinder
模型联编程序。
例外
modelType
或 modelBinder
参数为 null
。