TypeInfo.DeclaredConstructors プロパティ

定義

現在の型によって宣言されたコンストラクターのコレクションを取得します。

public:
 virtual property System::Collections::Generic::IEnumerable<System::Reflection::ConstructorInfo ^> ^ DeclaredConstructors { System::Collections::Generic::IEnumerable<System::Reflection::ConstructorInfo ^> ^ get(); };
public virtual System.Collections.Generic.IEnumerable<System.Reflection.ConstructorInfo> DeclaredConstructors { get; }
member this.DeclaredConstructors : seq<System.Reflection.ConstructorInfo>
Public Overridable ReadOnly Property DeclaredConstructors As IEnumerable(Of ConstructorInfo)

プロパティ値

現在の型によって宣言されたコンストラクターのコレクション。

注釈

プロパティの DeclaredConstructors 結果をフィルター処理するには、LINQ クエリを使用します。 ランタイムに由来するリフレクション オブジェクトの場合 (たとえば、 の結果として) は、 クラスの typeof(Object)メソッドを使用して継承ツリーを RuntimeReflectionExtensions 走査できます。 カスタマイズされたリフレクション コンテキストのオブジェクトのコンシューマーは、これらのメソッドを使用できず、継承ツリー自体を走査する必要があります。

適用対象