3 writes to TaskMethod
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (3)
908
existingOp.
TaskMethod
= newOp.TaskMethod;
942
newOp.
TaskMethod
= existingOp.TaskMethod;
1023
operationDescription.
TaskMethod
= methodInfo;
42 references to TaskMethod
dotnet-svcutil-lib (42)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\DispatcherBuilder.cs (1)
129
child.TaskMethod = operation.
TaskMethod
;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\OperationDescription.cs (1)
127
return this.
TaskMethod
?? this.BeginMethod;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (35)
414
else if (opDesc.SyncMethod != null && opDesc.
TaskMethod
!= null)
416
ProcessOpMethod(opDesc.
TaskMethod
, false, opDesc, result, targetIface, implType, useImplAttrs);
418
else if (opDesc.
TaskMethod
!= null && opDesc.BeginMethod != null)
474
else if (opDesc.SyncMethod != null && opDesc.
TaskMethod
!= null)
480
opDesc.
TaskMethod
.Name,
484
else if (opDesc.
TaskMethod
!= null && opDesc.BeginMethod != null)
488
opDesc.
TaskMethod
.Name,
489
opDesc.
TaskMethod
.DeclaringType,
878
if (existingOp.
TaskMethod
!= null && isTask)
908
existingOp.TaskMethod = newOp.
TaskMethod
;
942
newOp.TaskMethod = existingOp.
TaskMethod
;
944
if (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)
35
if (description.
TaskMethod
!= null)
37
dispatch.Invoker = new TaskMethodInvoker(description.
TaskMethod
, description.TaskTResult);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\OperationSelectorBehavior.cs (3)
61
if (operation.
TaskMethod
!= null)
63
if (!_operationMap.ContainsKey(operation.
TaskMethod
))
65
_operationMap.Add(operation.
TaskMethod
, operation.Name);