TypeBuilder.GetConstructorImpl 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
在衍生類別中覆寫時,使用指定的系結條件約束和指定的呼叫慣例,搜尋其參數符合指定自變數類型和修飾詞的建構函式。
protected:
override System::Reflection::ConstructorInfo ^ GetConstructorImpl(System::Reflection::BindingFlags bindingAttr, System::Reflection::Binder ^ binder, System::Reflection::CallingConventions callConvention, cli::array <Type ^> ^ types, cli::array <System::Reflection::ParameterModifier> ^ modifiers);
protected override System.Reflection.ConstructorInfo? GetConstructorImpl (System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder? binder, System.Reflection.CallingConventions callConvention, Type[] types, System.Reflection.ParameterModifier[]? modifiers);
protected override System.Reflection.ConstructorInfo GetConstructorImpl (System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Reflection.CallingConventions callConvention, Type[] types, System.Reflection.ParameterModifier[] modifiers);
override this.GetConstructorImpl : System.Reflection.BindingFlags * System.Reflection.Binder * System.Reflection.CallingConventions * Type[] * System.Reflection.ParameterModifier[] -> System.Reflection.ConstructorInfo
Protected Overrides Function GetConstructorImpl (bindingAttr As BindingFlags, binder As Binder, callConvention As CallingConventions, types As Type(), modifiers As ParameterModifier()) As ConstructorInfo
參數
- binder
- Binder
對象,定義一組屬性並啟用系結,這可以涉及選取多載方法、強制自變數類型,以及透過反映調用成員。
-或-
null
參考 (在 Visual Basic 中為Nothing
),以使用 DefaultBinder。
- callConvention
- CallingConventions
物件,指定要針對自變數的順序和配置使用的規則集、傳遞傳回值的方式、用於自變數的緩存器,以及清除堆疊。
- types
- Type[]
Type 物件的陣列,表示要取得之建構函式的參數數目、順序和類型。
-或-
型別的空陣列 Type (也就是 Type[] types = new Type[0]), 以取得不採用任何參數的建構函式。
- modifiers
- ParameterModifier[]
ParameterModifier 物件的陣列,表示與 types
陣列中對應專案相關聯的屬性。 默認係結器不會處理此參數。
傳回
ConstructorInfo 物件,代表符合指定需求的建構函式,如果找到則為 ;否則,null
。