DispatchProxy.Invoke(MethodInfo, Object[]) 方法

定义

每当对生成的代理类型调用任何方法时,都会调用此方法来调度控件。

protected:
 abstract System::Object ^ Invoke(System::Reflection::MethodInfo ^ targetMethod, cli::array <System::Object ^> ^ args);
protected abstract object Invoke (System.Reflection.MethodInfo targetMethod, object[] args);
protected abstract object? Invoke (System.Reflection.MethodInfo? targetMethod, object?[]? args);
abstract member Invoke : System.Reflection.MethodInfo * obj[] -> obj
Protected MustOverride Function Invoke (targetMethod As MethodInfo, args As Object()) As Object

参数

targetMethod
MethodInfo

调用方调用的方法。

args
Object[]

调用方传递给方法的参数。

返回

Object

要返回调用方的对象,或 void 方法的 null

适用于