3 writes to TaskMethod
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (3)
908existingOp.TaskMethod = newOp.TaskMethod; 942newOp.TaskMethod = existingOp.TaskMethod; 1023operationDescription.TaskMethod = methodInfo;
42 references to TaskMethod
dotnet-svcutil-lib (42)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\DispatcherBuilder.cs (1)
129child.TaskMethod = operation.TaskMethod;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\OperationDescription.cs (1)
127return this.TaskMethod ?? this.BeginMethod;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (35)
414else if (opDesc.SyncMethod != null && opDesc.TaskMethod != null) 416ProcessOpMethod(opDesc.TaskMethod, false, opDesc, result, targetIface, implType, useImplAttrs); 418else if (opDesc.TaskMethod != null && opDesc.BeginMethod != null) 474else if (opDesc.SyncMethod != null && opDesc.TaskMethod != null) 480opDesc.TaskMethod.Name, 484else if (opDesc.TaskMethod != null && opDesc.BeginMethod != null) 488opDesc.TaskMethod.Name, 489opDesc.TaskMethod.DeclaringType, 878if (existingOp.TaskMethod != null && isTask) 908existingOp.TaskMethod = newOp.TaskMethod; 942newOp.TaskMethod = existingOp.TaskMethod; 944if (existingOp.TaskMethod != null) 1727_taskInputs = ServiceReflector.GetInputParameters(_taskOperation.TaskMethod, false); 1738_taskOperation.TaskMethod.Name, 1753_taskOperation.TaskMethod.Name, 1767_taskOperation.TaskMethod.Name, 1780_taskOperation.TaskMethod.Name, 1794_taskOperation.TaskMethod.Name, 1808_taskOperation.TaskMethod.Name, 1824_taskOperation.TaskMethod.Name, 1843_taskInputs = ServiceReflector.GetInputParameters(_taskOperation.TaskMethod, false); 1853_taskOperation.TaskMethod.Name, 1854_taskOperation.TaskMethod.DeclaringType, 1869_taskOperation.TaskMethod.Name, 1870_taskOperation.TaskMethod.DeclaringType, 1884_taskOperation.TaskMethod.Name, 1885_taskOperation.TaskMethod.DeclaringType, 1898_taskOperation.TaskMethod.Name, 1899_taskOperation.TaskMethod.DeclaringType, 1913_taskOperation.TaskMethod.Name, 1914_taskOperation.TaskMethod.DeclaringType, 1928_taskOperation.TaskMethod.Name, 1929_taskOperation.TaskMethod.DeclaringType, 1945_taskOperation.TaskMethod.Name, 1946_taskOperation.TaskMethod.DeclaringType,
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\OperationInvokerBehavior.cs (2)
35if (description.TaskMethod != null) 37dispatch.Invoker = new TaskMethodInvoker(description.TaskMethod, description.TaskTResult);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\OperationSelectorBehavior.cs (3)
61if (operation.TaskMethod != null) 63if (!_operationMap.ContainsKey(operation.TaskMethod)) 65_operationMap.Add(operation.TaskMethod, operation.Name);