다음을 통해 공유


ModelAttributes.GetAttributesForParameter 메서드

정의

오버로드

GetAttributesForParameter(ParameterInfo)

지정된 parameterInfo에 대한 특성을 가져옵니다.

GetAttributesForParameter(ParameterInfo, Type)

지정된 modelType를 사용하여 지정된 parameterInfo 에 대한 특성을 가져옵니다.

GetAttributesForParameter(ParameterInfo)

Source:
ModelAttributes.cs
Source:
ModelAttributes.cs
Source:
ModelAttributes.cs

지정된 parameterInfo에 대한 특성을 가져옵니다.

public:
 static Microsoft::AspNetCore::Mvc::ModelBinding::ModelAttributes ^ GetAttributesForParameter(System::Reflection::ParameterInfo ^ parameterInfo);
public static Microsoft.AspNetCore.Mvc.ModelBinding.ModelAttributes GetAttributesForParameter (System.Reflection.ParameterInfo parameterInfo);
static member GetAttributesForParameter : System.Reflection.ParameterInfo -> Microsoft.AspNetCore.Mvc.ModelBinding.ModelAttributes
Public Shared Function GetAttributesForParameter (parameterInfo As ParameterInfo) As ModelAttributes

매개 변수

parameterInfo
ParameterInfo

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

반환

ModelAttributes 매개 변수 및 Type의 특성이 있는 instance.

적용 대상

GetAttributesForParameter(ParameterInfo, Type)

Source:
ModelAttributes.cs
Source:
ModelAttributes.cs

지정된 modelType를 사용하여 지정된 parameterInfo 에 대한 특성을 가져옵니다.

public:
 static Microsoft::AspNetCore::Mvc::ModelBinding::ModelAttributes ^ GetAttributesForParameter(System::Reflection::ParameterInfo ^ parameterInfo, Type ^ modelType);
public static Microsoft.AspNetCore.Mvc.ModelBinding.ModelAttributes GetAttributesForParameter (System.Reflection.ParameterInfo parameterInfo, Type modelType);
static member GetAttributesForParameter : System.Reflection.ParameterInfo * Type -> Microsoft.AspNetCore.Mvc.ModelBinding.ModelAttributes
Public Shared Function GetAttributesForParameter (parameterInfo As ParameterInfo, modelType As Type) As ModelAttributes

매개 변수

parameterInfo
ParameterInfo

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

modelType
Type

모델 형식입니다.

반환

ModelAttributes 매개 변수 및 Type의 특성이 있는 instance.

적용 대상