3 writes to BeginMethod
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (3)
924existingOp.BeginMethod = newOp.BeginMethod; 940newOp.BeginMethod = existingOp.BeginMethod; 1034operationDescription.BeginMethod = methodInfo;
36 references to BeginMethod
dotnet-svcutil-lib (36)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\DispatcherBuilder.cs (1)
132child.BeginMethod = operation.BeginMethod;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\OperationDescription.cs (1)
127return this.TaskMethod ?? this.BeginMethod;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (29)
410if (opDesc.SyncMethod != null && opDesc.BeginMethod != null) 412ProcessOpMethod(opDesc.BeginMethod, false, opDesc, result, targetIface, implType, useImplAttrs); 418else if (opDesc.TaskMethod != null && opDesc.BeginMethod != null) 420ProcessOpMethod(opDesc.BeginMethod, false, opDesc, result, targetIface, implType, useImplAttrs); 463if (opDesc.SyncMethod != null && opDesc.BeginMethod != null) 469opDesc.BeginMethod.Name, 484else if (opDesc.TaskMethod != null && opDesc.BeginMethod != null) 490opDesc.BeginMethod.Name, 884if (isAsync && (existingOp.BeginMethod != null)) 886string method1Name = existingOp.BeginMethod.Name; 924existingOp.BeginMethod = newOp.BeginMethod; 940newOp.BeginMethod = existingOp.BeginMethod; 1584_asyncInputs = ServiceReflector.GetInputParameters(_asyncOperation.BeginMethod, true); 1597_asyncOperation.BeginMethod.Name, 1613_asyncOperation.BeginMethod.Name, 1630_asyncOperation.BeginMethod.Name, 1645_asyncOperation.BeginMethod.Name, 1659_asyncOperation.BeginMethod.Name, 1674_asyncOperation.BeginMethod.Name, 1689_asyncOperation.BeginMethod.Name, 1706_asyncOperation.BeginMethod.Name, 1844_asyncInputs = ServiceReflector.GetInputParameters(_asyncOperation.BeginMethod, true); 1855_asyncOperation.BeginMethod.Name, 1871_asyncOperation.BeginMethod.Name, 1886_asyncOperation.BeginMethod.Name, 1900_asyncOperation.BeginMethod.Name, 1915_asyncOperation.BeginMethod.Name, 1930_asyncOperation.BeginMethod.Name, 1947_asyncOperation.BeginMethod.Name,
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\OperationInvokerBehavior.cs (2)
41if (description.BeginMethod != null) 54if (description.BeginMethod != null)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\OperationSelectorBehavior.cs (3)
52if (operation.BeginMethod != null) 54if (!_operationMap.ContainsKey(operation.BeginMethod)) 56_operationMap.Add(operation.BeginMethod, operation.Name);