다음을 통해 공유


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

호출자가 을 찾propertyType 입니다.

property
PropertyInfo

PropertyInfo 특성을 확인해야 하는 입니다.

반환

ModelAttributes 속성 및 Type의 특성이 있는 instance.

적용 대상

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

호출자가 을 찾propertyType 입니다.

property
PropertyInfo

PropertyInfo 특성을 확인해야 하는 입니다.

modelType
Type

모델 유형

반환

ModelAttributes 속성 및 Type의 특성이 있는 instance.

적용 대상