NewLateBinding.FallbackSetComplex 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.
Caution
do not use this method
Caution
FallbackSetComplex 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 FallbackSetComplex(System::Object ^ Instance, System::String ^ MemberName, cli::array <System::Object ^> ^ Arguments, bool OptimisticSet, bool RValueBase);
[System.Obsolete("do not use this method", true)]
public static void FallbackSetComplex (object Instance, string MemberName, object[] Arguments, bool OptimisticSet, bool RValueBase);
[System.Obsolete("FallbackSetComplex has been deprecated and is not supported.", true)]
public static void FallbackSetComplex (object Instance, string MemberName, object[] Arguments, bool OptimisticSet, bool RValueBase);
[<System.Obsolete("do not use this method", true)>]
static member FallbackSetComplex : obj * string * obj[] * bool * bool -> unit
[<System.Obsolete("FallbackSetComplex has been deprecated and is not supported.", true)>]
static member FallbackSetComplex : obj * string * obj[] * bool * bool -> unit
Public Shared Sub FallbackSetComplex (Instance As Object, MemberName As String, Arguments As Object(), OptimisticSet As Boolean, RValueBase As Boolean)
Parameters
- Instance
- Object
An instance of the call object exposing the property or method.
- MemberName
- String
The name of the property or method on the call object.
- Arguments
- Object[]
An array containing the arguments to be passed to the property or method being called.
- 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