ModelAttributes.GetAttributesForProperty 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
GetAttributesForProperty(Type, PropertyInfo) |
获取给定 |
GetAttributesForProperty(Type, PropertyInfo, Type) |
获取具有指定 |
GetAttributesForProperty(Type, PropertyInfo)
- Source:
- ModelAttributes.cs
- Source:
- ModelAttributes.cs
- Source:
- ModelAttributes.cs
获取给定 property
的属性。
public:
static Microsoft::AspNetCore::Mvc::ModelBinding::ModelAttributes ^ GetAttributesForProperty(Type ^ type, System::Reflection::PropertyInfo ^ property);
public static Microsoft.AspNetCore.Mvc.ModelBinding.ModelAttributes GetAttributesForProperty (Type type, System.Reflection.PropertyInfo property);
static member GetAttributesForProperty : Type * System.Reflection.PropertyInfo -> Microsoft.AspNetCore.Mvc.ModelBinding.ModelAttributes
Public Shared Function GetAttributesForProperty (type As Type, property As PropertyInfo) As ModelAttributes
参数
- property
- PropertyInfo
PropertyInfo需要解析其属性的 。
返回
具有 ModelAttributes 属性及其 Type特性的 实例。
适用于
GetAttributesForProperty(Type, PropertyInfo, Type)
- Source:
- ModelAttributes.cs
- Source:
- ModelAttributes.cs
获取具有指定 modelType
的给定 property
的属性。
public:
static Microsoft::AspNetCore::Mvc::ModelBinding::ModelAttributes ^ GetAttributesForProperty(Type ^ containerType, System::Reflection::PropertyInfo ^ property, Type ^ modelType);
public static Microsoft.AspNetCore.Mvc.ModelBinding.ModelAttributes GetAttributesForProperty (Type containerType, System.Reflection.PropertyInfo property, Type modelType);
static member GetAttributesForProperty : Type * System.Reflection.PropertyInfo * Type -> Microsoft.AspNetCore.Mvc.ModelBinding.ModelAttributes
Public Shared Function GetAttributesForProperty (containerType As Type, property As PropertyInfo, modelType As Type) As ModelAttributes
参数
- property
- PropertyInfo
PropertyInfo需要解析其属性的 。
- modelType
- Type
模型类型
返回
具有 ModelAttributes 属性及其 Type特性的 实例。