ModelAttributes.GetAttributesForProperty 方法

定义

重载

GetAttributesForProperty(Type, PropertyInfo)

获取给定 property的属性。

GetAttributesForProperty(Type, PropertyInfo, Type)

获取具有指定 modelType的给定 property 的属性。

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

参数

type
Type

调用 Type 方在其中找到 的 property

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

参数

containerType
Type

调用 Type 方在其中找到 的 property

property
PropertyInfo

PropertyInfo需要解析其属性的 。

modelType
Type

模型类型

返回

具有 ModelAttributes 属性及其 Type特性的 实例。

适用于