2 implementations of CloseAsync
System.ServiceModel.Primitives (2)
System\ServiceModel\Channels\CommunicationObject.cs (1)
229async Task IAsyncCommunicationObject.CloseAsync(TimeSpan timeout)
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (1)
200public Task CloseAsync(TimeSpan timeout)
11 references to CloseAsync
System.ServiceModel.Primitives (11)
Internals\System\Runtime\TaskHelpers.cs (1)
195return ((IAsyncCommunicationObject)communicationObject).CloseAsync(timeout);
System\ServiceModel\ChannelFactory.cs (1)
152await ((IAsyncCommunicationObject)this).CloseAsync(DefaultCloseTimeout);
System\ServiceModel\Channels\CommunicationObject.cs (2)
226await ((IAsyncCommunicationObject)this).CloseAsync(timeout); 1056return ((IAsyncCommunicationObject)communicationObject).CloseAsync(timeout);
System\ServiceModel\Channels\ServiceChannel.cs (1)
1615await ((IAsyncCommunicationObject)this).CloseAsync(DefaultCloseTimeout);
System\ServiceModel\Security\SecurityProtocol.cs (1)
367return ((IAsyncCommunicationObject)CommunicationObject).CloseAsync(timeout);
System\ServiceModel\Security\SecurityProtocolFactory.cs (1)
526return ((IAsyncCommunicationObject)CommunicationObject).CloseAsync(timeout);
System\ServiceModel\Security\SecuritySessionClientSettings.cs (1)
243return ((IAsyncCommunicationObject)_communicationObject).CloseAsync(timeout);
System\ServiceModel\Security\SecuritySessionSecurityTokenProvider.cs (1)
532await channel.CloseAsync(timeoutHelper.RemainingTime());
System\ServiceModel\Security\SecurityUtils.cs (1)
587return obj.CloseAsync(timeout);
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (1)
202return ((IAsyncCommunicationObject)CommunicationObject).CloseAsync(timeout);