SimpleModelBinderProvider 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 SimpleModelBinderProvider 類別的新執行個體。
多載
SimpleModelBinderProvider(Type, Func<IModelBinder>) |
使用指定的模型型別和模型繫結器 Factory,初始化 SimpleModelBinderProvider 類別的新執行個體。 |
SimpleModelBinderProvider(Type, IModelBinder) |
使用指定的模型型別和模型繫結器,初始化 SimpleModelBinderProvider 類別的新執行個體。 |
SimpleModelBinderProvider(Type, Func<IModelBinder>)
使用指定的模型型別和模型繫結器 Factory,初始化 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>
模型繫結器 Factory。
適用於
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
。