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