Share via


NewLateBinding.FallbackSetComplex Method

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Note: This API is now obsolete.

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

Namespace:  Microsoft.VisualBasic.CompilerServices
Assembly:  Microsoft.VisualBasic (in Microsoft.VisualBasic.dll)

Syntax

'Declaration
<DebuggerHiddenAttribute> _
<DebuggerStepThroughAttribute> _
<ObsoleteAttribute("do not use this method", True)> _
<EditorBrowsableAttribute(EditorBrowsableState.Never)> _
Public Shared Sub FallbackSetComplex ( _
    Instance As Object, _
    MemberName As String, _
    Arguments As Object(), _
    OptimisticSet As Boolean, _
    RValueBase As Boolean _
)
[DebuggerHiddenAttribute]
[DebuggerStepThroughAttribute]
[ObsoleteAttribute("do not use this method", true)]
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public static void FallbackSetComplex(
    Object Instance,
    string MemberName,
    Object[] Arguments,
    bool OptimisticSet,
    bool RValueBase
)

Parameters

  • Instance
    Type: System.Object
    An instance of the call object exposing the property or method.
  • MemberName
    Type: System.String
    The name of the property or method on the call object.
  • Arguments
    Type: array<System.Object[]
    An array containing the arguments to be passed to the property or method being called.
  • OptimisticSet
    Type: System.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
    Type: System.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.

Version Information

Silverlight

Obsolete (does not compile) in 4 and later

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.