4 implementations of EndSend
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);
3 references to EndSend
Client.ChannelLayer.IntegrationTests (1)
DuplexChannelShapeTests.4.0.0.cs (1)
109channel.EndSend,
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);