NewLateBinding.FallbackIndexSetComplex Method

Definition

Caution

do not use this method

Caution

FallbackIndexSetComplex has been deprecated and is not supported.

Executes a late-bound property set or field write call. This helper method is not meant to be called directly from your code.

public:
 static void FallbackIndexSetComplex(System::Object ^ Instance, cli::array <System::Object ^> ^ Arguments, cli::array <System::String ^> ^ ArgumentNames, bool OptimisticSet, bool RValueBase);
[System.Obsolete("do not use this method", true)]
public static void FallbackIndexSetComplex (object Instance, object[] Arguments, string[] ArgumentNames, bool OptimisticSet, bool RValueBase);
[System.Obsolete("FallbackIndexSetComplex has been deprecated and is not supported.", true)]
public static void FallbackIndexSetComplex (object Instance, object[] Arguments, string[] ArgumentNames, bool OptimisticSet, bool RValueBase);
[<System.Obsolete("do not use this method", true)>]
static member FallbackIndexSetComplex : obj * obj[] * string[] * bool * bool -> unit
[<System.Obsolete("FallbackIndexSetComplex has been deprecated and is not supported.", true)>]
static member FallbackIndexSetComplex : obj * obj[] * string[] * bool * bool -> unit
Public Shared Sub FallbackIndexSetComplex (Instance As Object, Arguments As Object(), ArgumentNames As String(), OptimisticSet As Boolean, RValueBase As Boolean)

Parameters

Instance
Object

An instance of the call object exposing the property or method.

Arguments
Object[]

An array containing the arguments to be passed to the property or method being called.

ArgumentNames
String[]

An array of argument names.

OptimisticSet
Boolean

A Boolean value used to determine whether the set operation will work. Set to True when you believe that an intermediate value has been set in the property or field; otherwise False.

RValueBase
Boolean

A Boolean value that specifies when the base reference of the late reference is an RValue. Set to True when the base reference of the late reference is an RValue; this allows you to generate a run-time exception for late assignments to fields of RValues of value types. Otherwise, set to False.

Attributes

Applies to