次の方法で共有


ModelAttributes.GetAttributesForProperty メソッド

定義

オーバーロード

GetAttributesForProperty(Type, PropertyInfo)

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

GetAttributesForProperty(Type, PropertyInfo, Type)

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

GetAttributesForProperty(Type, PropertyInfo)

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

Type呼び出し元が を検出propertyした 。

property
PropertyInfo

PropertyInfo属性を解決する必要がある 。

戻り値

ModelAttributesプロパティとその Typeの属性を持つ インスタンス。

適用対象

GetAttributesForProperty(Type, PropertyInfo, Type)

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

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

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

Type呼び出し元が を検出propertyした 。

property
PropertyInfo

PropertyInfo属性を解決する必要がある 。

modelType
Type

モデルの種類

戻り値

ModelAttributesプロパティとその Typeの属性を持つ インスタンス。

適用対象