ModelAttributes.GetAttributesForParameter 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
GetAttributesForParameter(ParameterInfo) |
获取给定 |
GetAttributesForParameter(ParameterInfo, Type) |
获取具有指定 |
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的属性的 实例。