7 implementations of BeginClose
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CommunicationObject.cs (1)
121public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
583IAsyncResult ICommunicationObject.BeginClose(TimeSpan timeout, AsyncCallback callback, object state)
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (2)
284IAsyncResult ICommunicationObject.BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 716IAsyncResult ICommunicationObject.BeginClose(TimeSpan timeout, AsyncCallback callback, object state)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1417public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
232public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 407public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state)
8 references to BeginClose
dotnet-svcutil-lib (8)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CloseCollectionAsyncResult.cs (1)
37result = collection[index].BeginClose(timeoutHelper.RemainingTime(), s_nestedCallback, callbackState);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\LayeredChannel.cs (1)
59return _innerChannel.BeginClose(timeout, callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelFactory.cs (1)
444_innerChannelFactory.BeginClose, _innerChannelFactory.EndClose);
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (3)
281return ((ICommunicationObject)this).BeginClose(_channelFactory.InternalCloseTimeout, callback, state); 352return InnerChannel.BeginClose(timeout, callback, state); 718return ((ICommunicationObject)_channel).BeginClose(timeout, callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1426return _innerChannel.BeginClose(timeout, callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ListenerHandler.cs (1)
177IAsyncResult result = channel.BeginClose(timeout, Fx.ThunkCallback(new AsyncCallback(CloseChannelCallback)), state);