2 instantiations of SendOperation
System.ServiceModel.Routing (2)
System\ServiceModel\Routing\MessageRpc.cs (2)
208this.operations.Add(new SendOperation(result, typeof(TContract), this.OperationContext)); 240this.operations.Add(new SendOperation(endpointList, typeof(TContract), this.OperationContext));
10 references to SendOperation
System.ServiceModel.Routing (10)
System\ServiceModel\Routing\MessageRpc.cs (4)
37IList<SendOperation> operations; 154public IList<SendOperation> Operations 207this.operations = new List<SendOperation>(1); 237this.operations = new List<SendOperation>(endpointLists.Count);
System\ServiceModel\Routing\ProcessMessagesAsyncResult.cs (4)
155SendOperation sendOperation = messageRpc.Operations[this.destinationIndex]; 285SendOperation currentDest = messageRpc.Operations[this.destinationIndex]; 508SendOperation sendOperation = messageRpc.Operations[this.destinationIndex]; 608SendOperation sendOperation = messageRpc.Operations[this.destinationIndex];
System\ServiceModel\Routing\ProcessRequestAsyncResult.cs (2)
58SendOperation sendOperation = this.messageRpc.Operations[0]; 208SendOperation sendOperation = this.messageRpc.Operations[0];