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