TypeDelegator.GetConstructors(BindingFlags) 方法

定義

傳回 ConstructorInfo 物件的陣列,表示為型別定義的建構函式,該型別由目前的 TypeDelegator 所包裝。

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

位元遮罩,會影響搜尋的進行方式。 這個值是零或來自 BindingFlags 多個位元旗標的組合。

傳回

ConstructorInfo 型別的陣列,包含為這個類別定義的指定建構函式。 如果未定義建構函式,則會傳回空陣列。 依據指定參數的值而定,只有公用建構函式、或者公用和非公用建構函式會被傳回。

屬性

備註

類別初始化表達式只能透過GetMemberGetMembersFindMembersGetConstructors來使用。

適用於