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