1 write to SyncMethod
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (1)
1028
operationDescription.
SyncMethod
= methodInfo;
55 references to SyncMethod
dotnet-svcutil-lib (55)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\DispatcherBuilder.cs (1)
131
child.SyncMethod = operation.
SyncMethod
;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\OperationDescription.cs (2)
125
if (this.
SyncMethod
== null)
131
return this.
SyncMethod
;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (47)
410
if (opDesc.
SyncMethod
!= null && opDesc.BeginMethod != null)
414
else if (opDesc.
SyncMethod
!= null && opDesc.TaskMethod != null)
463
if (opDesc.
SyncMethod
!= null && opDesc.BeginMethod != null)
467
opDesc.
SyncMethod
.Name,
468
opDesc.
SyncMethod
.DeclaringType,
474
else if (opDesc.
SyncMethod
!= null && opDesc.TaskMethod != null)
478
opDesc.
SyncMethod
.Name,
479
opDesc.
SyncMethod
.DeclaringType,
890
if (!isAsync && !isTask && (existingOp.
SyncMethod
!= null))
892
string method1Name = existingOp.
SyncMethod
.Name;
910
if (existingOp.
SyncMethod
!= null)
926
if (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,
1639
if (_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,
1761
if (_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)
39
else if (description.
SyncMethod
!= null)
49
dispatch.Invoker = new SyncMethodInvoker(description.
SyncMethod
);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\OperationSelectorBehavior.cs (3)
46
if (operation.
SyncMethod
!= null)
48
if (!_operationMap.ContainsKey(operation.
SyncMethod
))
49
_operationMap.Add(operation.
SyncMethod
, operation.Name);