7 references to InvokeDelegate
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\InvokerUtil.cs (3)
22internal InvokeDelegate GenerateInvokeDelegate(MethodInfo method, out int inputParameterCount, 30internal InvokeDelegate GenerateInvokeDelegate(MethodInfo method, out int inputParameterCount, out int outputParameterCount) 49InvokeDelegate lambda = delegate (object target, object[] inputs, object[] outputs)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\SyncMethodInvoker.cs (2)
16private InvokeDelegate _invokeDelegate; 202var invokeDelegate = new InvokerUtil().GenerateInvokeDelegate(Method, out inputParameterCount, out outputParameterCount);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\TaskMethodInvoker.cs (2)
18private InvokeDelegate _invokeDelegate; 277var invokeDelegate = new InvokerUtil().GenerateInvokeDelegate(Method, out inputParameterCount, out outputParameterCount);