3 writes to BeginMethod
System.ServiceModel (3)
System\ServiceModel\Description\TypeLoader.cs (3)
875
existingOp.
BeginMethod
= newOp.BeginMethod;
891
newOp.
BeginMethod
= existingOp.BeginMethod;
986
operationDescription.
BeginMethod
= methodInfo;
46 references to BeginMethod
System.ServiceModel (41)
System\ServiceModel\Administration\ContractInstanceProvider.cs (1)
85
operation.SetProperty(AdministrationStrings.AsyncPattern, null != operationDescription.
BeginMethod
);
System\ServiceModel\Description\DispatcherBuilder.cs (1)
986
child.BeginMethod = operation.
BeginMethod
;
System\ServiceModel\Description\OperationDescription.cs (1)
108
return this.TaskMethod ?? this.
BeginMethod
;
System\ServiceModel\Description\TaskOperationDescriptionValidator.cs (2)
44
if (operation.
BeginMethod
!= null)
47
string method2Name = operation.
BeginMethod
.Name;
System\ServiceModel\Description\TypeLoader.cs (29)
431
if (opDesc.SyncMethod != null && opDesc.
BeginMethod
!= null)
433
ProcessOpMethod(opDesc.
BeginMethod
, false, opDesc, result, ifaceMap, useImplAttrs);
439
else if (opDesc.TaskMethod != null && opDesc.
BeginMethod
!= null)
441
ProcessOpMethod(opDesc.
BeginMethod
, false, opDesc, result, ifaceMap, useImplAttrs);
486
if (opDesc.SyncMethod != null && opDesc.
BeginMethod
!= null)
492
opDesc.
BeginMethod
.Name,
507
else if (opDesc.TaskMethod != null && opDesc.
BeginMethod
!= null)
513
opDesc.
BeginMethod
.Name,
835
if (isAsync && (existingOp.
BeginMethod
!= null))
837
string method1Name = existingOp.
BeginMethod
.Name;
875
existingOp.BeginMethod = newOp.
BeginMethod
;
891
newOp.BeginMethod = existingOp.
BeginMethod
;
1547
this.asyncInputs = ServiceReflector.GetInputParameters(this.asyncOperation.
BeginMethod
, true);
1560
this.asyncOperation.
BeginMethod
.Name,
1576
this.asyncOperation.
BeginMethod
.Name,
1593
this.asyncOperation.
BeginMethod
.Name,
1608
this.asyncOperation.
BeginMethod
.Name,
1622
this.asyncOperation.
BeginMethod
.Name,
1638
this.asyncOperation.
BeginMethod
.Name,
1653
this.asyncOperation.
BeginMethod
.Name,
1670
this.asyncOperation.
BeginMethod
.Name,
1809
this.asyncInputs = ServiceReflector.GetInputParameters(this.asyncOperation.
BeginMethod
, true);
1820
this.asyncOperation.
BeginMethod
.Name,
1836
this.asyncOperation.
BeginMethod
.Name,
1851
this.asyncOperation.
BeginMethod
.Name,
1865
this.asyncOperation.
BeginMethod
.Name,
1881
this.asyncOperation.
BeginMethod
.Name,
1896
this.asyncOperation.
BeginMethod
.Name,
1913
this.asyncOperation.
BeginMethod
.Name,
System\ServiceModel\Dispatcher\OperationInvokerBehavior.cs (4)
42
if (description.
BeginMethod
!= null)
48
dispatch.Invoker = new AsyncMethodInvoker(description.
BeginMethod
, description.EndMethod);
63
if (description.
BeginMethod
!= null)
66
dispatch.Invoker = new AsyncMethodInvoker(description.
BeginMethod
, description.EndMethod);
System\ServiceModel\Dispatcher\OperationSelectorBehavior.cs (3)
54
if (operation.
BeginMethod
!= null)
56
if (!operationMap.ContainsKey(operation.
BeginMethod
.MethodHandle))
58
operationMap.Add(operation.
BeginMethod
.MethodHandle, operation.Name);
System.ServiceModel.Web (2)
System\ServiceModel\Description\WebHttpBehavior.cs (2)
404
else if (od.
BeginMethod
!= null)
406
attributes = od.
BeginMethod
.GetCustomAttributes(typeof(DescriptionAttribute), true);
System.WorkflowServices (3)
System\ServiceModel\Dispatcher\WorkflowOperationInvoker.cs (3)
49
if (operationDescription.
BeginMethod
!= null)
51
this.syncMethod = operationDescription.
BeginMethod
;
52
inParameterCount = GetFlowedInParameterCount(operationDescription.
BeginMethod
.GetParameters()) - 2;