6 implementations of EndSend
Extensibility.MessageInterceptor.IntegrationTests (2)
InterceptingChannelFactory.cs (1)
151public void EndSend(IAsyncResult result)
InterceptingDuplexChannel.cs (1)
310public void EndSend(IAsyncResult result)
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Channels\OutputChannel.cs (1)
45public void EndSend(IAsyncResult result)
System.ServiceModel.Primitives (1)
netstandard.cs (1)
538void System.ServiceModel.Channels.IOutputChannel.EndSend(System.IAsyncResult result) { }
System.ServiceModel.Primitives.Tests (2)
ServiceModel\ThrowingOnCloseBindingElement.cs (2)
196public void EndSend(IAsyncResult result) => InnerChannel.EndSend(result); 279public void EndSend(IAsyncResult result) => InnerChannel.EndSend(result);
5 references to EndSend
Client.ChannelLayer.IntegrationTests (1)
DuplexChannelShapeTests.4.0.0.cs (1)
109channel.EndSend,
Extensibility.MessageInterceptor.IntegrationTests (2)
InterceptingChannelFactory.cs (1)
197channel.EndSend(result);
InterceptingDuplexChannel.cs (1)
312this.InnerChannel.EndSend(result);
System.ServiceModel.Primitives.Tests (2)
ServiceModel\ThrowingOnCloseBindingElement.cs (2)
196public void EndSend(IAsyncResult result) => InnerChannel.EndSend(result); 279public void EndSend(IAsyncResult result) => InnerChannel.EndSend(result);