Attribute.GetCustomAttribute メソッド (ParameterInfo, Type, Boolean)
指定したクラス メンバ パラメータに適用されている指定の型のカスタム属性、またはオプションで基本クラスから継承された指定の型のカスタム属性を取得します。
Overloads Public Shared Function GetCustomAttribute( _
ByVal element As ParameterInfo, _ ByVal attributeType As Type, _ ByVal inherit As Boolean _) As Attribute
[C#]
public static Attribute GetCustomAttribute(ParameterInfoelement,TypeattributeType,boolinherit);
[C++]
public: static Attribute* GetCustomAttribute(ParameterInfo* element,Type* attributeType,boolinherit);
[JScript]
public static function GetCustomAttribute(
element : ParameterInfo,attributeType : Type,inherit : Boolean) : Attribute;
パラメータ
- element
クラスのメンバのパラメータを記述する ParameterInfo クラスから派生したオブジェクト。 - attributeType
カスタム属性を適用する対象の Type オブジェクト。 - inherit
true の場合は、 element の祖先のカスタム属性も検索することを示します。
戻り値
element に適用される attributeType 型のカスタム属性が存在しない場合は null 参照 (Visual Basic では Nothing) 。
または
element に適用される attributeType 型の単一のカスタム属性への Attribute 参照。
例外
例外の種類 | 条件 |
---|---|
ArgumentNullException | element または attributeType が null 参照 (Visual Basic では Nothing) です。 |
ArgumentException | attributeType が Attribute から派生していません。 |
AmbiguousMatchException | 要求された属性が複数見つかりました。 |
使用例
パラメータのカスタム属性クラスを定義し、そのカスタム属性を派生クラスおよび派生クラスの基本クラスのメソッドに適用するコード例を次に示します。この例では、 GetCustomAttribute メソッドを使用して属性を返します。
[SampleID='System.Attribute.GetCustomAttribute' SnippetID='3']
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET
参照
Attribute クラス | Attribute メンバ | System 名前空間 | Attribute.GetCustomAttribute オーバーロードの一覧