NewLateBinding.FallbackInvokeDefault2 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
注意
do not use this method
注意
FallbackInvokeDefault2 has been deprecated and is not supported.
执行默认属性或字段的后期绑定获取,或执行对默认方法或函数的调用。 此帮助器方法不宜从您的代码直接调用。
public:
static System::Object ^ FallbackInvokeDefault2(System::Object ^ Instance, cli::array <System::Object ^> ^ Arguments, cli::array <System::String ^> ^ ArgumentNames, bool ReportErrors);
[System.Obsolete("do not use this method", true)]
public static object? FallbackInvokeDefault2 (object Instance, object[] Arguments, string[] ArgumentNames, bool ReportErrors);
[System.Obsolete("FallbackInvokeDefault2 has been deprecated and is not supported.", true)]
public static object? FallbackInvokeDefault2 (object Instance, object[] Arguments, string[] ArgumentNames, bool ReportErrors);
[System.Obsolete("do not use this method", true)]
public static object FallbackInvokeDefault2 (object Instance, object[] Arguments, string[] ArgumentNames, bool ReportErrors);
[<System.Obsolete("do not use this method", true)>]
static member FallbackInvokeDefault2 : obj * obj[] * string[] * bool -> obj
[<System.Obsolete("FallbackInvokeDefault2 has been deprecated and is not supported.", true)>]
static member FallbackInvokeDefault2 : obj * obj[] * string[] * bool -> obj
Public Shared Function FallbackInvokeDefault2 (Instance As Object, Arguments As Object(), ArgumentNames As String(), ReportErrors As Boolean) As Object
参数
- Instance
- Object
公开属性或方法的调用对象的实例。
- Arguments
- Object[]
一个数组,包含要传递给正在被调用的属性或方法的参数。
- ArgumentNames
- String[]
参数名称的数组。
- ReportErrors
- Boolean
一个 Boolean
值,用于指定在遇到错误时是否引发异常。 设置为 True
可引发异常。 设置为 False
可在遇到错误时返回 Nothing
。
返回
调用对象的实例。
- 属性