8 references to InvokeDelegate
System.ServiceModel (8)
System\ServiceModel\Dispatcher\InvokerUtil.cs (4)
47internal InvokeDelegate GenerateInvokeDelegate(MethodInfo method, out int inputParameterCount, out int outputParameterCount) 118internal InvokeDelegate GenerateInvokeDelegate(MethodInfo method, out int inputParameterCount, out int outputParameterCount) 125this.ilg.BeginMethod("SyncInvoke" + method.Name, typeof(InvokeDelegate), requiresMemberAccess); 160return (InvokeDelegate)this.ilg.EndMethod();
System\ServiceModel\Dispatcher\SyncMethodInvoker.cs (2)
24InvokeDelegate invokeDelegate; 266InvokeDelegate invokeDelegate = new InvokerUtil().GenerateInvokeDelegate(this.Method, out inputParameterCount, out outputParameterCount);
System\ServiceModel\Dispatcher\TaskMethodInvoker.cs (2)
24private InvokeDelegate invokeDelegate; 322InvokeDelegate invokeDelegate = new InvokerUtil().GenerateInvokeDelegate(this.taskMethod, out inputParameterCount, out outputParameterCount);