CollectionModelBinder<TElement> 类

定义

IModelBinder 绑定集合值的实现。

generic <typename TElement>
public ref class CollectionModelBinder : Microsoft::AspNetCore::Mvc::ModelBinding::ICollectionModelBinder, Microsoft::AspNetCore::Mvc::ModelBinding::IModelBinder
public class CollectionModelBinder<TElement> : Microsoft.AspNetCore.Mvc.ModelBinding.ICollectionModelBinder, Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinder
type CollectionModelBinder<'Element> = class
    interface ICollectionModelBinder
    interface IModelBinder
Public Class CollectionModelBinder(Of TElement)
Implements ICollectionModelBinder, IModelBinder

类型参数

TElement

集合中元素的类型。

继承
CollectionModelBinder<TElement>
派生
实现

构造函数

CollectionModelBinder<TElement>(IModelBinder)
已过时.

此构造函数已过时,将在将来的版本中删除。 建议的替代方法是重载,该重载也采用 ILoggerFactory

创建一个新的 CollectionModelBinder<TElement>

CollectionModelBinder<TElement>(IModelBinder, ILoggerFactory)

创建一个新的 CollectionModelBinder<TElement>

CollectionModelBinder<TElement>(IModelBinder, ILoggerFactory, Boolean)

创建一个新的 CollectionModelBinder<TElement>

CollectionModelBinder<TElement>(IModelBinder, ILoggerFactory, Boolean, MvcOptions)

创建一个新的 CollectionModelBinder<TElement>

属性

ElementBinder

获取 IModelBinder 绑定集合元素的实例。

Logger

ILogger用于在此绑定器中记录的 。

方法

AddErrorIfBindingRequired(ModelBindingContext)

如果 IsBindingRequired为 ,ModelError则向 ModelState 添加 。

BindModelAsync(ModelBindingContext)

尝试绑定模型。

CanCreateInstance(Type)

获取指示此 ICollectionModelBinder 实现是否可以创建 Object 可分配给 的 targetType

ConvertToCollectionType(Type, IEnumerable<TElement>)

获取一个 ObjecttargetType 分配给的 ,其中包含 来自 collection的成员。

CopyToModel(Object, IEnumerable<TElement>)

将 中的 sourceCollection 值添加到给定 target

CreateEmptyCollection(Type)

创建 Object 可分配给 的 targetType

CreateInstance(Type)

创建 targetType 的实例。

适用于