LateBinding.LateCall 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.
Performs a late-bound call to an object method.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
static void LateCall(System::Object ^ o, Type ^ objType, System::String ^ name, cli::array <System::Object ^> ^ args, cli::array <System::String ^> ^ paramnames, cli::array <bool> ^ CopyBack);
public static void LateCall (object? o, Type? objType, string name, object?[]? args, string?[]? paramnames, bool[]? CopyBack);
public static void LateCall (object o, Type objType, string name, object[] args, string[] paramnames, bool[] CopyBack);
static member LateCall : obj * Type * string * obj[] * string[] * bool[] -> unit
Public Shared Sub LateCall (o As Object, objType As Type, name As String, args As Object(), paramnames As String(), CopyBack As Boolean())
Public Sub LateCall (o As Object, objType As Type, name As String, args As Object(), paramnames As String(), CopyBack As Boolean())
Parameters
- o
- Object
The object to call a method on.
- objType
- Type
The type of the object.
- name
- String
The method name of o
to call.
- args
- Object[]
An array of parameter values to pass to the method.
- paramnames
- String[]
An array that contains the names of the parameters to which the values in the args
array are passed.
- CopyBack
- Boolean[]
An array of Boolean
values, where True
indicates that the associated parameter is passed ByRef
.
Remarks
This class supports the Visual Basic compiler and is not intended to be used directly from your code.