LateBinding.LateSetComplex Method

Definition

Sets a late-bound value of a member 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 LateSetComplex(System::Object ^ o, Type ^ objType, System::String ^ name, cli::array <System::Object ^> ^ args, cli::array <System::String ^> ^ paramnames, bool OptimisticSet, bool RValueBase);
public static void LateSetComplex (object? o, Type? objType, string name, object?[]? args, string?[]? paramnames, bool OptimisticSet, bool RValueBase);
public static void LateSetComplex (object o, Type objType, string name, object[] args, string[] paramnames, bool OptimisticSet, bool RValueBase);
static member LateSetComplex : obj * Type * string * obj[] * string[] * bool * bool -> unit
Public Shared Sub LateSetComplex (o As Object, objType As Type, name As String, args As Object(), paramnames As String(), OptimisticSet As Boolean, RValueBase As Boolean)
Public Sub LateSetComplex (o As Object, objType As Type, name As String, args As Object(), paramnames As String(), OptimisticSet As Boolean, RValueBase As Boolean)

Parameters

o
Object

The object to set the member value for.

objType
Type

The type of the object.

name
String

The member name to set.

args
Object[]

An array of one or more parameter values to pass to the member of 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.

Applies to