_Type::InvokeMember Method (String^, BindingFlags, Binder^, Object^, array<Object^>^, array<ParameterModifier>^, CultureInfo^, array<String^>^)
Provides COM objects with version-independent access to the Type::InvokeMember method.
Assembly: mscorlib (in mscorlib.dll)
Object^ InvokeMember( String^ name, BindingFlags invokeAttr, Binder^ binder, Object^ target, array<Object^>^ args, array<ParameterModifier>^ modifiers, CultureInfo^ culture, array<String^>^ namedParameters )
Parameters
- name
-
Type:
System::String^
The String containing the name of the constructor, method, property, or field member to invoke.
-or-
An empty string ("") to invoke the default member.
-or-
For IDispatch members, a string representing the DispID, for example "[DispID=3]".
- invokeAttr
-
Type:
System.Reflection::BindingFlags
A bitmask comprised of one or more BindingFlags that specify how the search is conducted. The access can be one of the BindingFlags such as Public, NonPublic, Private, InvokeMethod, GetField, and so on. The type of lookup need not be specified. If the type of lookup is omitted, BindingFlags.Public | BindingFlags.Instance will apply.
- binder
-
Type:
System.Reflection::Binder^
A Binder object that defines a set of properties and enables binding, which can involve selection of an overloaded method, coercion of argument types, and invocation of a member through reflection.
-or-
null, to use the DefaultBinder.
- target
-
Type:
System::Object^
The Object on which to invoke the specified member.
- args
-
Type:
array<System::Object^>^
An array containing the arguments to pass to the member to invoke.
- modifiers
-
Type:
array<System.Reflection::ParameterModifier>^
An array of ParameterModifier objects representing the attributes associated with the corresponding element in the args array. A parameter's associated attributes are stored in the member's signature. The default binder does not process this parameter.
- culture
-
Type:
System.Globalization::CultureInfo^
The CultureInfo object representing the globalization locale to use, which may be necessary for locale-specific conversions, such as converting a numeric String to a Double.
-or-
null to use the current thread's CultureInfo.
- namedParameters
-
Type:
array<System::String^>^
An array containing the names of the parameters to which the values in the args array are passed.
This method is for access to managed classes from unmanaged code, and should not be called from managed code.
The Type::InvokeMember method invokes the specified member, using the specified binding constraints and matching the specified argument list, modifiers, and culture.
Available since 1.1