This topic has not yet been rated - Rate this topic

NewLateBinding.FallbackCall Method

Note: This API is now obsolete.

Executes a late-bound method or function 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)
[ObsoleteAttribute("do not use this method", true)]
public static Object FallbackCall(
	Object Instance,
	string MemberName,
	Object[] Arguments,
	string[] ArgumentNames,
	bool IgnoreReturn
)

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: System.Object[]

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

ArgumentNames
Type: System.String[]

An array of argument names.

IgnoreReturn
Type: System.Boolean

A Boolean value indicating whether or not the return value can be ignored.

Return Value

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

Similar to CallByName.

.NET Framework

Obsolete (does not compile) in 4 and later

.NET Framework Client Profile

Obsolete (does not compile) in 4 and later

Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.