3 writes to TaskMethod
System.ServiceModel (3)
System\ServiceModel\Description\TypeLoader.cs (3)
859
existingOp.
TaskMethod
= newOp.TaskMethod;
893
newOp.
TaskMethod
= existingOp.TaskMethod;
975
operationDescription.
TaskMethod
= methodInfo;
47 references to TaskMethod
System.ServiceModel (45)
System\ServiceModel\Description\DispatcherBuilder.cs (1)
983
child.TaskMethod = operation.
TaskMethod
;
System\ServiceModel\Description\OperationDescription.cs (1)
108
return this.
TaskMethod
?? this.BeginMethod;
System\ServiceModel\Description\TaskOperationDescriptionValidator.cs (3)
13
MethodInfo taskMethod = operationDescription.
TaskMethod
;
36
string method1Name = operation.
TaskMethod
.Name;
46
string method1Name = operation.
TaskMethod
.Name;
System\ServiceModel\Description\TypeLoader.cs (35)
435
else if (opDesc.SyncMethod != null && opDesc.
TaskMethod
!= null)
437
ProcessOpMethod(opDesc.
TaskMethod
, false, opDesc, result, ifaceMap, useImplAttrs);
439
else if (opDesc.
TaskMethod
!= null && opDesc.BeginMethod != null)
497
else if (opDesc.SyncMethod != null && opDesc.
TaskMethod
!= null)
503
opDesc.
TaskMethod
.Name,
507
else if (opDesc.
TaskMethod
!= null && opDesc.BeginMethod != null)
511
opDesc.
TaskMethod
.Name,
512
opDesc.
TaskMethod
.DeclaringType,
829
if (existingOp.
TaskMethod
!= null && isTask)
859
existingOp.TaskMethod = newOp.
TaskMethod
;
893
newOp.TaskMethod = existingOp.
TaskMethod
;
895
if (existingOp.
TaskMethod
!= null)
1691
this.taskInputs = ServiceReflector.GetInputParameters(this.taskOperation.
TaskMethod
, false);
1702
this.taskOperation.
TaskMethod
.Name,
1717
this.taskOperation.
TaskMethod
.Name,
1731
this.taskOperation.
TaskMethod
.Name,
1744
this.taskOperation.
TaskMethod
.Name,
1759
this.taskOperation.
TaskMethod
.Name,
1773
this.taskOperation.
TaskMethod
.Name,
1789
this.taskOperation.
TaskMethod
.Name,
1808
this.taskInputs = ServiceReflector.GetInputParameters(this.taskOperation.
TaskMethod
, false);
1818
this.taskOperation.
TaskMethod
.Name,
1819
this.taskOperation.
TaskMethod
.DeclaringType,
1834
this.taskOperation.
TaskMethod
.Name,
1835
this.taskOperation.
TaskMethod
.DeclaringType,
1849
this.taskOperation.
TaskMethod
.Name,
1850
this.taskOperation.
TaskMethod
.DeclaringType,
1863
this.taskOperation.
TaskMethod
.Name,
1864
this.taskOperation.
TaskMethod
.DeclaringType,
1879
this.taskOperation.
TaskMethod
.Name,
1880
this.taskOperation.
TaskMethod
.DeclaringType,
1894
this.taskOperation.
TaskMethod
.Name,
1895
this.taskOperation.
TaskMethod
.DeclaringType,
1911
this.taskOperation.
TaskMethod
.Name,
1912
this.taskOperation.
TaskMethod
.DeclaringType,
System\ServiceModel\Dispatcher\OperationInvokerBehavior.cs (2)
36
if (description.
TaskMethod
!= null)
38
dispatch.Invoker = new TaskMethodInvoker(description.
TaskMethod
, description.TaskTResult);
System\ServiceModel\Dispatcher\OperationSelectorBehavior.cs (3)
63
if (operation.
TaskMethod
!= null)
65
if (!operationMap.ContainsKey(operation.
TaskMethod
.MethodHandle))
67
operationMap.Add(operation.
TaskMethod
.MethodHandle, operation.Name);
System.ServiceModel.Web (2)
System\ServiceModel\Description\WebHttpBehavior.cs (2)
408
else if (od.
TaskMethod
!= null)
410
attributes = od.
TaskMethod
.GetCustomAttributes(typeof(DescriptionAttribute), true);