共用方式為


GenericModelBinderProvider 建構函式

定義

初始化 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。

例外狀況

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

適用於