LateBinding.LateIndexSetComplex 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.
Sets a late-bound value of an object, using the specified parameters.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
static void LateIndexSetComplex(System::Object ^ o, cli::array <System::Object ^> ^ args, cli::array <System::String ^> ^ paramnames, bool OptimisticSet, bool RValueBase);
public static void LateIndexSetComplex (object o, object?[] args, string?[]? paramnames, bool OptimisticSet, bool RValueBase);
public static void LateIndexSetComplex (object o, object[] args, string[] paramnames, bool OptimisticSet, bool RValueBase);
static member LateIndexSetComplex : obj * obj[] * string[] * bool * bool -> unit
Public Shared Sub LateIndexSetComplex (o As Object, args As Object(), paramnames As String(), OptimisticSet As Boolean, RValueBase As Boolean)
Public Sub LateIndexSetComplex (o As Object, args As Object(), paramnames As String(), OptimisticSet As Boolean, RValueBase As Boolean)
Parameters
- o
- Object
The object to set the value for.
- args
- Object[]
An array of one or more parameter values to pass to the object o
.
- paramnames
- String[]
An array that contains the names of the parameters to which the values in the args
array are passed.
- OptimisticSet
- Boolean
True
to suppress the exception thrown when the set member is not found.
- RValueBase
- Boolean
True
to identify o
as the result of a late-bound expression.
Remarks
This class supports the Visual Basic compiler and is not intended to be used directly from your code.