JSMethod.Invoke(Object, BindingFlags, Binder, Object[], CultureInfo) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Invokes the method, using the specified information.
This API supports the product infrastructure and is not intended to be used directly from your code.
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
Parameters
- obj
- Object
The object to call the method on.
- options
- BindingFlags
A bitwise combination of the enumeration values that control the binding.
- binder
- Binder
An object that converts the type from actual argument type to formal argument type.
- parameters
- Object[]
The argument list to pass to the method.
- culture
- CultureInfo
Provides information about a specific culture or locale. Used to format numbers, dates, and strings correctly.
Returns
The return value of the call to the method.