PropertyBuilder.GetCustomAttributes メソッド

定義

このプロパティに定義されているすべてのカスタム属性を返します。

オーバーロード

GetCustomAttributes(Type, Boolean)

Type によって識別されるカスタム属性の配列を返します。

GetCustomAttributes(Boolean)

このプロパティのすべてのカスタム属性の配列を返します。

GetCustomAttributes(Type, Boolean)

ソース:
PropertyBuilder.cs

Type によって識別されるカスタム属性の配列を返します。

public:
 override cli::array <System::Object ^> ^ GetCustomAttributes(Type ^ attributeType, bool inherit);
public override object[] GetCustomAttributes (Type attributeType, bool inherit);
override this.GetCustomAttributes : Type * bool -> obj[]
Public Overrides Function GetCustomAttributes (attributeType As Type, inherit As Boolean) As Object()

パラメーター

attributeType
Type

型により識別されるカスタム属性の配列。

inherit
Boolean

このプロパティの継承チェーンを検索して、カスタム属性を見つける場合は true

戻り値

Object[]

リフレクションされたメンバーに定義されているカスタム属性の配列。このメンバーに定義されている属性がない場合は null

例外

このメソッドはサポートされていません。

注釈

Type.GetType または Assembly.GetType を使用してプロパティの親型を反映し、その型から Reflection プロパティ オブジェクトを取得し、PropertyInfo.GetCustomAttributes を呼び出します。

適用対象

GetCustomAttributes(Boolean)

ソース:
PropertyBuilder.cs

このプロパティのすべてのカスタム属性の配列を返します。

public:
 override cli::array <System::Object ^> ^ GetCustomAttributes(bool inherit);
public override object[] GetCustomAttributes (bool inherit);
override this.GetCustomAttributes : bool -> obj[]
Public Overrides Function GetCustomAttributes (inherit As Boolean) As Object()

パラメーター

inherit
Boolean

このプロパティの継承チェーンを検索して、カスタム属性を見つける場合は true

戻り値

Object[]

すべてのカスタム属性の配列。

例外

このメソッドはサポートされていません。

注釈

Type.GetType または Assembly.GetType を使用してプロパティの親型を反映し、その型から Reflection プロパティ オブジェクトを取得し、PropertyInfo.GetCustomAttributes を呼び出します。

適用対象