PropertyBuilder.GetCustomAttributes メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
このプロパティに定義されているすべてのカスタム属性を返します。
オーバーロード
GetCustomAttributes(Type, Boolean) |
Type によって識別されるカスタム属性の配列を返します。 |
GetCustomAttributes(Boolean) |
このプロパティのすべてのカスタム属性の配列を返します。 |
GetCustomAttributes(Type, Boolean)
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
。
戻り値
リフレクションされたメンバーに定義されているカスタム属性の配列。このメンバーに定義されている属性がない場合は null
。
例外
このメソッドはサポートされていません。
注釈
Type.GetType または Assembly.GetType を使用してプロパティの親型を反映し、その型から Reflection プロパティ オブジェクトを取得し、PropertyInfo.GetCustomAttributes を呼び出します。
適用対象
GetCustomAttributes(Boolean)
このプロパティのすべてのカスタム属性の配列を返します。
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
。
戻り値
すべてのカスタム属性の配列。
例外
このメソッドはサポートされていません。
注釈
Type.GetType または Assembly.GetType を使用してプロパティの親型を反映し、その型から Reflection プロパティ オブジェクトを取得し、PropertyInfo.GetCustomAttributes を呼び出します。
適用対象
.NET