JSMethod.Invoke(Object, BindingFlags, Binder, Object[], CultureInfo) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
使用指定的信息调用方法。
此 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
提供有关特定区域性或区域设置的信息。 用于正确设置数字、日期和字符串的格式。
返回
方法调用的返回值。