ModelBinderProviderCollection.RegisterBinderForGenericType 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
添加一个模型联编程序提供程序到一个泛型类型的集合。
重载
RegisterBinderForGenericType(Type, Func<Type[],IModelBinder>) |
使用指定的模型类型和模型联编程序工厂,添加一个模型联编程序到泛型类型的的集合。 |
RegisterBinderForGenericType(Type, Type) |
使用指定的模型类型和模型联编程序类型,添加一个模型联编程序提供程序到泛型类型的的集合。 |
RegisterBinderForGenericType(Type, IModelBinder) |
使用指定的模型类型和模型联编程序,添加一个模型联编程序提供程序到泛型类型的的集合。 |
RegisterBinderForGenericType(Type, Func<Type[],IModelBinder>)
使用指定的模型类型和模型联编程序工厂,添加一个模型联编程序到泛型类型的的集合。
public:
void RegisterBinderForGenericType(Type ^ modelType, Func<cli::array <Type ^> ^, System::Web::ModelBinding::IModelBinder ^> ^ modelBinderFactory);
public void RegisterBinderForGenericType (Type modelType, Func<Type[],System.Web.ModelBinding.IModelBinder> modelBinderFactory);
member this.RegisterBinderForGenericType : Type * Func<Type[], System.Web.ModelBinding.IModelBinder> -> unit
Public Sub RegisterBinderForGenericType (modelType As Type, modelBinderFactory As Func(Of Type(), IModelBinder))
参数
- modelType
- Type
模型类型。
- modelBinderFactory
- Func<Type[],IModelBinder>
模型联编程序工厂。
适用于
RegisterBinderForGenericType(Type, Type)
使用指定的模型类型和模型联编程序类型,添加一个模型联编程序提供程序到泛型类型的的集合。
public:
void RegisterBinderForGenericType(Type ^ modelType, Type ^ modelBinderType);
public void RegisterBinderForGenericType (Type modelType, Type modelBinderType);
member this.RegisterBinderForGenericType : Type * Type -> unit
Public Sub RegisterBinderForGenericType (modelType As Type, modelBinderType As Type)
参数
- modelType
- Type
模型类型。
- modelBinderType
- Type
模型绑定器类型。
适用于
RegisterBinderForGenericType(Type, IModelBinder)
使用指定的模型类型和模型联编程序,添加一个模型联编程序提供程序到泛型类型的的集合。
public:
void RegisterBinderForGenericType(Type ^ modelType, System::Web::ModelBinding::IModelBinder ^ modelBinder);
public void RegisterBinderForGenericType (Type modelType, System.Web.ModelBinding.IModelBinder modelBinder);
member this.RegisterBinderForGenericType : Type * System.Web.ModelBinding.IModelBinder -> unit
Public Sub RegisterBinderForGenericType (modelType As Type, modelBinder As IModelBinder)
参数
- modelType
- Type
模型类型。
- modelBinder
- IModelBinder
模型联编程序。