NewLateBinding.LateGet Method

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

Executes a late-bound property get or field access 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
<DebuggerStepThroughAttribute> _
<DebuggerHiddenAttribute> _
Public Shared Function LateGet ( _
    Instance As Object, _
    Type As Type, _
    MemberName As String, _
    Arguments As Object(), _
    ArgumentNames As String(), _
    TypeArguments As Type(), _
    CopyBack As Boolean() _
) As Object
[DebuggerStepThroughAttribute]
[DebuggerHiddenAttribute]
public static Object LateGet(
    Object Instance,
    Type Type,
    string MemberName,
    Object[] Arguments,
    string[] ArgumentNames,
    Type[] TypeArguments,
    bool[] CopyBack
)

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.
  • ArgumentNames
    Type: array<System.String[]
    An array of argument names.
  • TypeArguments
    Type: array<System.Type[]
    An array of argument types; used only for generic calls to pass argument types.
  • CopyBack
    Type: array<System.Boolean[]
    An array of Boolean values that the late binder uses to communicate back to the call site which arguments match ByRef parameters. Each True value indicates that the arguments matched and should be copied out after the call to LateCall is complete.

Return Value

Type: System.Object
An instance of the call object.

Version Information

Silverlight

Supported in: 5, 4, 3

Platforms

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