次の方法で共有


ModelAttributes.GetAttributesForParameter メソッド

定義

オーバーロード

GetAttributesForParameter(ParameterInfo)

指定 parameterInfoした の属性を取得します。

GetAttributesForParameter(ParameterInfo, Type)

指定した で指定 parameterInfo された の属性を取得します modelType

GetAttributesForParameter(ParameterInfo)

ソース:
ModelAttributes.cs
ソース:
ModelAttributes.cs
ソース:
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)

ソース:
ModelAttributes.cs
ソース:
ModelAttributes.cs

指定した で指定 parameterInfo された の属性を取得します modelType

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の属性を持つ インスタンス。

適用対象