1 implementation of CloseAsync
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CommunicationObject.cs (1)
152async Task IAsyncCommunicationObject.CloseAsync(TimeSpan timeout)
6 references to CloseAsync
dotnet-svcutil-lib (6)
FrameworkFork\System.ServiceModel\System\ServiceModel\ChannelFactory.cs (1)
324await asyncFactory.CloseAsync(timeout);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CommunicationObject.cs (1)
149await ((IAsyncCommunicationObject)this).CloseAsync(timeout);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ConnectionOrientedTransportChannelFactory.cs (1)
326await ((IAsyncCommunicationObject)localUpgrade).CloseAsync(timeoutHelper.RemainingTime());
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (2)
1295await asyncInnerChannel.CloseAsync(timeoutHelper.RemainingTime()); 1308await asyncFactory.CloseAsync(timeoutHelper.RemainingTime());
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (1)
117await asyncInnerCommunicationObject.CloseAsync(timeout);