1 write to SyncMethod
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (1)
1028operationDescription.SyncMethod = methodInfo;
55 references to SyncMethod
dotnet-svcutil-lib (55)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\DispatcherBuilder.cs (1)
131child.SyncMethod = operation.SyncMethod;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\OperationDescription.cs (2)
125if (this.SyncMethod == null) 131return this.SyncMethod;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (47)
410if (opDesc.SyncMethod != null && opDesc.BeginMethod != null) 414else if (opDesc.SyncMethod != null && opDesc.TaskMethod != null) 463if (opDesc.SyncMethod != null && opDesc.BeginMethod != null) 467opDesc.SyncMethod.Name, 468opDesc.SyncMethod.DeclaringType, 474else if (opDesc.SyncMethod != null && opDesc.TaskMethod != null) 478opDesc.SyncMethod.Name, 479opDesc.SyncMethod.DeclaringType, 890if (!isAsync && !isTask && (existingOp.SyncMethod != null)) 892string method1Name = existingOp.SyncMethod.Name; 910if (existingOp.SyncMethod != null) 926if (existingOp.SyncMethod != null) 1583_syncInputs = ServiceReflector.GetInputParameters(_syncOperation.SyncMethod, false); 1585_syncOutputs = ServiceReflector.GetOutputParameters(_syncOperation.SyncMethod, false); 1595_syncOperation.SyncMethod.Name, 1596_syncOperation.SyncMethod.DeclaringType, 1611_syncOperation.SyncMethod.Name, 1612_syncOperation.SyncMethod.DeclaringType, 1628_syncOperation.SyncMethod.Name, 1629_syncOperation.SyncMethod.DeclaringType, 1639if (_syncOperation.SyncMethod.ReturnType != _syncOperation.EndMethod.ReturnType) 1643_syncOperation.SyncMethod.Name, 1644_syncOperation.SyncMethod.DeclaringType, 1657_syncOperation.SyncMethod.Name, 1658_syncOperation.SyncMethod.DeclaringType, 1672_syncOperation.SyncMethod.Name, 1673_syncOperation.SyncMethod.DeclaringType, 1687_syncOperation.SyncMethod.Name, 1688_syncOperation.SyncMethod.DeclaringType, 1704_syncOperation.SyncMethod.Name, 1705_syncOperation.SyncMethod.DeclaringType, 1726_syncInputs = ServiceReflector.GetInputParameters(_syncOperation.SyncMethod, false); 1736_syncOperation.SyncMethod.Name, 1737_syncOperation.SyncMethod.DeclaringType, 1751_syncOperation.SyncMethod.Name, 1752_syncOperation.SyncMethod.DeclaringType, 1761if (_syncOperation.SyncMethod.ReturnType != _syncOperation.TaskTResult) 1765_syncOperation.SyncMethod.Name, 1766_syncOperation.SyncMethod.DeclaringType, 1778_syncOperation.SyncMethod.Name, 1779_syncOperation.SyncMethod.DeclaringType, 1792_syncOperation.SyncMethod.Name, 1793_syncOperation.SyncMethod.DeclaringType, 1806_syncOperation.SyncMethod.Name, 1807_syncOperation.SyncMethod.DeclaringType, 1822_syncOperation.SyncMethod.Name, 1823_syncOperation.SyncMethod.DeclaringType,
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\OperationInvokerBehavior.cs (2)
39else if (description.SyncMethod != null) 49dispatch.Invoker = new SyncMethodInvoker(description.SyncMethod);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\OperationSelectorBehavior.cs (3)
46if (operation.SyncMethod != null) 48if (!_operationMap.ContainsKey(operation.SyncMethod)) 49_operationMap.Add(operation.SyncMethod, operation.Name);