NewLateBinding.LateIndexSetComplex 方法

定义

执行后期绑定属性设置或字段写入调用。 此帮助器方法不宜从您的代码直接调用。

public:
 static void LateIndexSetComplex(System::Object ^ Instance, cli::array <System::Object ^> ^ Arguments, cli::array <System::String ^> ^ ArgumentNames, bool OptimisticSet, bool RValueBase);
public static void LateIndexSetComplex (object Instance, object[] Arguments, string[] ArgumentNames, bool OptimisticSet, bool RValueBase);
public static void LateIndexSetComplex (object Instance, object?[]? Arguments, string?[]? ArgumentNames, bool OptimisticSet, bool RValueBase);
static member LateIndexSetComplex : obj * obj[] * string[] * bool * bool -> unit
Public Shared Sub LateIndexSetComplex (Instance As Object, Arguments As Object(), ArgumentNames As String(), OptimisticSet As Boolean, RValueBase As Boolean)

参数

Instance
Object

公开属性或方法的调用对象的实例。

Arguments
Object[]

一个数组,包含要传递给正在被调用的属性或方法的参数。

ArgumentNames
String[]

参数名称的数组。

OptimisticSet
Boolean

一个 Boolean 值,用于确定设置操作是否起作用。 如果确定已经在属性或字段中设置了中间值,则设置为 True,否则设置为 False

RValueBase
Boolean

一个 Boolean 值,该值指定后期引用的基引用何时为 RValue。 当后期引用的基引用为 True 时,则设置为 RValue;这允许您在后期赋值给值类型的 RValues 的字段时生成运行时异常。 否则设置为 False

适用于