ConstructorBuilder.GetCustomAttributes メソッド

定義

このコンストラクターに定義済みのカスタム属性を返します。

オーバーロード

GetCustomAttributes(Boolean)

このコンストラクターに定義済みのカスタム属性をすべて返します。

GetCustomAttributes(Type, Boolean)

指定された型で識別されるカスタム属性を返します。

GetCustomAttributes(Boolean)

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

基底クラスからのカスタム属性の継承を制御します。 このパラメーターは無視されます。

戻り値

Object[]

この ConstructorBuilder インスタンスで表されるコンストラクターのすべてのカスタム属性を表す、オブジェクトの配列。

例外

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

注釈

クラスが基底クラスからコンストラクターを継承しないため、 パラメーターは inherit 無視されます。

カスタム属性を取得するには、 を呼び出CreateTypeして型の構築を完了し、返された型で メソッドをGetConstructor呼び出してコンストラクターを取得し、返された ConstructorInfoで メソッドを呼び出GetCustomAttributesします。

適用対象

GetCustomAttributes(Type, Boolean)

ソース:
ConstructorBuilder.cs

指定された型で識別されるカスタム属性を返します。

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

基底クラスからのカスタム属性の継承を制御します。 このパラメーターは無視されます。

戻り値

Object[]

このコンストラクターの属性を表すオブジェクトの配列。

例外

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

注釈

クラスが基底クラスからコンストラクターを継承しないため、 パラメーターは inherit 無視されます。

カスタム属性を取得するには、 を呼び出CreateTypeして型の構築を完了し、返された型で メソッドをGetConstructor呼び出してコンストラクターを取得し、返された ConstructorInfoで メソッドを呼び出GetCustomAttributesします。

適用対象