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