LateBinding.LateIndexSetComplex(Object, Object[], String[], Boolean, Boolean) 方法

定义

使用指定的参数为对象设置一个后期绑定值。Sets a late-bound value of an object, using the specified parameters.

此 API 支持产品基础结构,不能在代码中直接使用。

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)

参数

o
Object

要为其设置值的对象。The object to set the value for.

args
Object[]

一个数组,其中包含要传递给对象 o 的一个或多个参数值。An array of one or more parameter values to pass to the object o.

paramnames
String[]

一个数组,其中包含要向其传递 args 数组中的值的参数的名称。An array that contains the names of the parameters to which the values in the args array are passed.

OptimisticSet
Boolean

如果禁止显示未找到集成员时引发的异常,则为 TrueTrue to suppress the exception thrown when the set member is not found.

RValueBase
Boolean

如果将 o 标识为后期绑定表达式的结果,则为 TrueTrue to identify o as the result of a late-bound expression.

注解

此类支持 Visual Basic 编译器,不应在代码中直接使用。This class supports the Visual Basic compiler and is not intended to be used directly from your code.

适用于