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的属性的 实例。

适用于

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的属性的 实例。

适用于