7 implementations of BeginClose
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CommunicationObject.cs (1)
116public IAsyncResult BeginClose(AsyncCallback callback, object state)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
578IAsyncResult ICommunicationObject.BeginClose(AsyncCallback callback, object state)
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (2)
279IAsyncResult ICommunicationObject.BeginClose(AsyncCallback callback, object state) 711IAsyncResult ICommunicationObject.BeginClose(AsyncCallback callback, object state)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1412public IAsyncResult BeginClose(AsyncCallback callback, object state)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
227public IAsyncResult BeginClose(AsyncCallback callback, object state) 402public IAsyncResult BeginClose(AsyncCallback callback, object state)
2 references to BeginClose
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
713return ((ICommunicationObject)_channel).BeginClose(callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1259result = _innerChannel.BeginClose(s_closeInnerChannelCallback, this);