4 references to TaskCreator
System.ServiceModel (4)
System\ServiceModel\Channels\ServiceChannelProxy.cs (4)
211
static readonly MethodInfo createGenericTaskMI = typeof(
TaskCreator
).GetMethod("CreateGenericTask", new Type[] { typeof(ServiceChannel), typeof(ProxyOperationRuntime), typeof(object[]) });
241
return
TaskCreator
.CreateTask(channel, operation, methodCall.InArgs);
243
return
TaskCreator
.CreateGenericTask(channel, operation, methodCall.InArgs);
294
Task task =
TaskCreator
.CreateTask(this.serviceChannel, methodCall, operation);