5 instantiations of InvokerUtil
System.ServiceModel (5)
System\ServiceModel\Dispatcher\AsyncMethodInvoker.cs (2)
377InvokeBeginDelegate invokeBeginDelegate = new InvokerUtil().GenerateInvokeBeginDelegate(this.beginMethod, out inputParameterCount); 381InvokeEndDelegate invokeEndDelegate = new InvokerUtil().GenerateInvokeEndDelegate(this.endMethod, out outputParameterCount);
System\ServiceModel\Dispatcher\InstanceBehavior.cs (1)
69InvokerUtil util = new InvokerUtil();
System\ServiceModel\Dispatcher\SyncMethodInvoker.cs (1)
266InvokeDelegate invokeDelegate = new InvokerUtil().GenerateInvokeDelegate(this.Method, out inputParameterCount, out outputParameterCount);
System\ServiceModel\Dispatcher\TaskMethodInvoker.cs (1)
322InvokeDelegate invokeDelegate = new InvokerUtil().GenerateInvokeDelegate(this.taskMethod, out inputParameterCount, out outputParameterCount);
4 references to InvokerUtil
System.ServiceModel (4)
System\ServiceModel\Dispatcher\InstanceBehavior.cs (1)
69InvokerUtil util = new InvokerUtil();
System\ServiceModel\Dispatcher\InvokerUtil.cs (3)
357if (t.Module == typeof(InvokerUtil).Module) 374return ctor != null && (!ctor.IsPublic || !IsTypeVisible(ctor.DeclaringType)) && ctor.Module != typeof(InvokerUtil).Module; 379return method != null && (!method.IsPublic || !IsTypeVisible(method.DeclaringType)) && method.Module != typeof(InvokerUtil).Module;