JSConstructor.Invoke 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
调用此构造函数。
重载
Invoke(BindingFlags, Binder, Object[], CultureInfo) |
此 API 支持产品基础结构,不能在代码中直接使用。 使用指定的区域性和绑定信息调用此构造函数。 |
Invoke(Object, BindingFlags, Binder, Object[], CultureInfo) |
此 API 支持产品基础结构,不能在代码中直接使用。 使用指定的区域性和绑定信息调用指定对象的构造函数。 |
Invoke(BindingFlags, Binder, Object[], CultureInfo)
使用指定的区域性和绑定信息调用此构造函数。
此 API 支持产品基础结构,不能在代码中直接使用。
public:
override System::Object ^ Invoke(System::Reflection::BindingFlags options, System::Reflection::Binder ^ binder, cli::array <System::Object ^> ^ parameters, System::Globalization::CultureInfo ^ culture);
public override object Invoke (System.Reflection.BindingFlags options, System.Reflection.Binder binder, object[] parameters, System.Globalization.CultureInfo culture);
override this.Invoke : System.Reflection.BindingFlags * System.Reflection.Binder * obj[] * System.Globalization.CultureInfo -> obj
Public Overrides Function Invoke (options As BindingFlags, binder As Binder, parameters As Object(), culture As CultureInfo) As Object
参数
- options
- BindingFlags
枚举值的按位组合,这些值控制绑定。
- binder
- Binder
一个对象,该对象可将类型从实参类型转换为形参类型。
- parameters
- Object[]
要传递给此构造函数的参数列表。
- culture
- CultureInfo
提供有关特定区域性或区域设置的信息。 用于正确设置数字、日期和字符串的格式。
返回
与构造函数关联的类的实例。
另请参阅
适用于
Invoke(Object, BindingFlags, Binder, Object[], CultureInfo)
使用指定的区域性和绑定信息调用指定对象的构造函数。
此 API 支持产品基础结构,不能在代码中直接使用。
public:
override System::Object ^ Invoke(System::Object ^ obj, System::Reflection::BindingFlags options, System::Reflection::Binder ^ binder, cli::array <System::Object ^> ^ parameters, System::Globalization::CultureInfo ^ culture);
public override object Invoke (object obj, System.Reflection.BindingFlags options, System.Reflection.Binder binder, object[] parameters, System.Globalization.CultureInfo culture);
override this.Invoke : obj * System.Reflection.BindingFlags * System.Reflection.Binder * obj[] * System.Globalization.CultureInfo -> obj
Public Overrides Function Invoke (obj As Object, options As BindingFlags, binder As Binder, parameters As Object(), culture As CultureInfo) As Object
参数
- obj
- Object
要调用其构造函数的对象。
- options
- BindingFlags
枚举值的按位组合,这些值控制绑定。
- binder
- Binder
一个对象,该对象可将类型从实参类型转换为形参类型。
- parameters
- Object[]
要传递给此构造函数的参数列表。
- culture
- CultureInfo
提供有关特定区域性或区域设置的信息。 用于正确设置数字、日期和字符串的格式。
返回
与构造函数关联的类的实例。