7 implementations of EndClose
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CommunicationObject.cs (1)
286public void EndClose(IAsyncResult result)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
588void ICommunicationObject.EndClose(IAsyncResult result)
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (2)
289void ICommunicationObject.EndClose(IAsyncResult result) 721void ICommunicationObject.EndClose(IAsyncResult result)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1434public void EndClose(IAsyncResult result)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
237public void EndClose(IAsyncResult result) 412public void EndClose(IAsyncResult result)
9 references to EndClose
dotnet-svcutil-lib (9)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CloseCollectionAsyncResult.cs (1)
64communicationObject.EndClose(result);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\LayeredChannel.cs (1)
64_innerChannel.EndClose(result);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelFactory.cs (1)
444_innerChannelFactory.BeginClose, _innerChannelFactory.EndClose);
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (2)
368InnerChannel.EndClose(result); 723((ICommunicationObject)_channel).EndClose(result);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (2)
1299_innerChannel.EndClose(result); 1439_innerChannel.EndClose(result);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ListenerHandler.cs (2)
179channel.EndClose(result); 208state.Channel.EndClose(result);