6 implementations of EndSend
dotnet-svcutil-lib (6)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
265public void EndSend(IAsyncResult result)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\OutputChannel.cs (1)
44public void EndSend(IAsyncResult result)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
1208public void EndSend(IAsyncResult result)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
740void IOutputChannel.EndSend(IAsyncResult result)
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
791void IOutputChannel.EndSend(IAsyncResult result)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1502public void EndSend(IAsyncResult result)
8 references to EndSend
dotnet-svcutil-lib (8)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
267_innerOutputChannel.EndSend(result);
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
793((IOutputChannel)_channel).EndSend(result);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (5)
355_channel.EndSend(result); 686context._channel.EndSend(result); 708thisPtr._context._channel.EndSend(result); 928_parent._channel.EndSend(sendResult); 1504_innerChannel.EndSend(result);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\OutputChannelBinder.cs (1)
87_channel.EndSend(result);