Implemented interface member:
method
BeginClose
System.ServiceModel.ICommunicationObject.BeginClose(System.TimeSpan, System.AsyncCallback, System.Object)
7 references to BeginClose
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CommunicationObject.cs (1)
118return this.BeginClose(this.DefaultCloseTimeout, callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
585return _serviceChannel.BeginClose(timeout, callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
333return _channelFactory.BeginClose(timeout, callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityProtocolFactory.cs (1)
1068return this.CommunicationObject.BeginClose(timeout, callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
234return _communicationObject.BeginClose(timeout, callback, state); 409return _communicationObject.BeginClose(timeout, callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrustFeb2005.cs (1)
288return _innerChannelFactory.BeginClose(timeout, callback, state);