EnumBuilder.GetConstructors(BindingFlags) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定に従って、このクラスに定義されているパブリック コンストラクターおよび非パブリック コンストラクターを表す ConstructorInfo オブジェクトの配列を返します。
public:
override cli::array <System::Reflection::ConstructorInfo ^> ^ GetConstructors(System::Reflection::BindingFlags bindingAttr);
public override System.Reflection.ConstructorInfo[] GetConstructors (System.Reflection.BindingFlags bindingAttr);
[System.Runtime.InteropServices.ComVisible(true)]
public override System.Reflection.ConstructorInfo[] GetConstructors (System.Reflection.BindingFlags bindingAttr);
override this.GetConstructors : System.Reflection.BindingFlags -> System.Reflection.ConstructorInfo[]
[<System.Runtime.InteropServices.ComVisible(true)>]
override this.GetConstructors : System.Reflection.BindingFlags -> System.Reflection.ConstructorInfo[]
Public Overrides Function GetConstructors (bindingAttr As BindingFlags) As ConstructorInfo()
パラメーター
- bindingAttr
- BindingFlags
これは InvokeMethod
や NonPublic
など、BindingFlags からのビット フラグでなければなりません。
戻り値
このクラスに定義されている指定したコンストラクターを表す ConstructorInfo オブジェクトの配列を返します。 コンストラクターが定義されていない場合は、空の配列が返されます。
- 属性
例外
不完全な型では、このメソッドは現在サポートされていません。
注釈
回避策として、完成した型のコンストラクターを取得するには、 または Assembly.GetType を使用してType.GetType型を取得し、取得した型でリフレクションを使用できます。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET