3 writes to BeginMethod
System.ServiceModel.Primitives (3)
System\ServiceModel\Description\TypeLoader.cs (3)
937existingOp.BeginMethod = newOp.BeginMethod; 953newOp.BeginMethod = existingOp.BeginMethod; 1051operationDescription.BeginMethod = methodInfo;
39 references to BeginMethod
System.ServiceModel.Primitives (36)
System\ServiceModel\Description\DispatcherBuilder.cs (1)
129child.BeginMethod = operation.BeginMethod;
System\ServiceModel\Description\OperationDescription.cs (1)
80return TaskMethod ?? BeginMethod;
System\ServiceModel\Description\TypeLoader.cs (29)
423if (opDesc.SyncMethod != null && opDesc.BeginMethod != null) 425ProcessOpMethod(opDesc.BeginMethod, false, opDesc, result, targetIface, implType, useImplAttrs); 431else if (opDesc.TaskMethod != null && opDesc.BeginMethod != null) 433ProcessOpMethod(opDesc.BeginMethod, false, opDesc, result, targetIface, implType, useImplAttrs); 476if (opDesc.SyncMethod != null && opDesc.BeginMethod != null) 482opDesc.BeginMethod.Name, 497else if (opDesc.TaskMethod != null && opDesc.BeginMethod != null) 503opDesc.BeginMethod.Name, 897if (isAsync && (existingOp.BeginMethod != null)) 899string method1Name = existingOp.BeginMethod.Name; 937existingOp.BeginMethod = newOp.BeginMethod; 953newOp.BeginMethod = existingOp.BeginMethod; 1641_asyncInputs = ServiceReflector.GetInputParameters(_asyncOperation.BeginMethod, true); 1654_asyncOperation.BeginMethod.Name, 1670_asyncOperation.BeginMethod.Name, 1687_asyncOperation.BeginMethod.Name, 1702_asyncOperation.BeginMethod.Name, 1716_asyncOperation.BeginMethod.Name, 1731_asyncOperation.BeginMethod.Name, 1746_asyncOperation.BeginMethod.Name, 1763_asyncOperation.BeginMethod.Name, 1901_asyncInputs = ServiceReflector.GetInputParameters(_asyncOperation.BeginMethod, true); 1912_asyncOperation.BeginMethod.Name, 1928_asyncOperation.BeginMethod.Name, 1943_asyncOperation.BeginMethod.Name, 1957_asyncOperation.BeginMethod.Name, 1972_asyncOperation.BeginMethod.Name, 1987_asyncOperation.BeginMethod.Name, 2004_asyncOperation.BeginMethod.Name,
System\ServiceModel\Dispatcher\OperationInvokerBehavior.cs (2)
42if (description.BeginMethod != null) 55if (description.BeginMethod != null)
System\ServiceModel\Dispatcher\OperationSelectorBehavior.cs (3)
57if (operation.BeginMethod != null) 59if (!_operationMap.ContainsKey(operation.BeginMethod.MethodHandle.Value)) 61_operationMap.Add(operation.BeginMethod.MethodHandle.Value, operation.Name);
System.ServiceModel.Primitives.Tests (3)
Description\ContractDescriptionTest.cs (3)
213Assert.NotNull(operation.BeginMethod); 217Assert.Equal(typeof(IDescriptionTestsServiceBeginEndGenerated).GetMethod(nameof(IDescriptionTestsServiceBeginEndGenerated.BeginEcho)), operation.BeginMethod); 222Assert.Equal(typeof(IDescriptionTestsServiceBeginEndGenerated).GetMethod(nameof(IDescriptionTestsServiceBeginEndGenerated.BeginMessageRequestReply)), operation.BeginMethod);