9 implementations of EndClose
System.ServiceModel.Federation (2)
System\ServiceModel\Federation\WSTrustChannel.cs (1)
308void ICommunicationObject.EndClose(IAsyncResult result)
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (1)
566void ICommunicationObject.EndClose(IAsyncResult result)
System.ServiceModel.Primitives (7)
System\ServiceModel\Channels\CommunicationObject.cs (1)
399public void EndClose(IAsyncResult result)
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
598void ICommunicationObject.EndClose(IAsyncResult result)
System\ServiceModel\ClientBase.cs (2)
604void ICommunicationObject.EndClose(IAsyncResult result) 1098void ICommunicationObject.EndClose(IAsyncResult result)
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1453public void EndClose(IAsyncResult result)
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
220public void EndClose(IAsyncResult result) 377public void EndClose(IAsyncResult result)
27 references to EndClose
Client.ChannelLayer.IntegrationTests (6)
DuplexChannelShapeTests.4.0.0.cs (2)
125Task.Factory.FromAsync(channel.BeginClose, channel.EndClose, TaskCreationOptions.None).GetAwaiter().GetResult(); 126Task.Factory.FromAsync(factory.BeginClose, factory.EndClose, TaskCreationOptions.None).GetAwaiter().GetResult();
RequestReplyChannelShapeTests.4.0.0.cs (4)
171Task.Factory.FromAsync(channel.BeginClose, channel.EndClose, TaskCreationOptions.None).GetAwaiter().GetResult(); 172Task.Factory.FromAsync(factory.BeginClose, factory.EndClose, TaskCreationOptions.None).GetAwaiter().GetResult(); 228Task.Factory.FromAsync(channel.BeginClose, channel.EndClose, TaskCreationOptions.None).GetAwaiter().GetResult(); 229Task.Factory.FromAsync(factory.BeginClose, factory.EndClose, TaskCreationOptions.None).GetAwaiter().GetResult();
Client.ClientBase.IntegrationTests (4)
ChannelBaseTests.4.0.0.cs (1)
136((ICommunicationObject)client).EndClose(ar);
ClientBaseTests.4.0.0.cs (3)
329((ICommunicationObject)client).EndClose(ar); 408((ICommunicationObject)client).EndClose(ar); 611((ICommunicationObject)client).EndClose(ar);
Contract.Service.IntegrationTests (1)
ServiceContractTests.4.0.0.cs (1)
465Task t = Task.Factory.FromAsync(proxyAsCommunicationObject.BeginClose, proxyAsCommunicationObject.EndClose, TaskCreationOptions.None);
Extensibility.MessageInterceptor.IntegrationTests (2)
InterceptingChannelBase.cs (1)
72this.innerChannel.EndClose(result);
InterceptingChannelFactory.cs (1)
75return new ChainedAsyncResult(timeout, callback, state, base.OnBeginClose, base.OnEndClose, innerChannelFactory.BeginClose, innerChannelFactory.EndClose);
System.ServiceModel.Federation (2)
System\ServiceModel\Federation\WSTrustChannel.cs (1)
310RequestChannel.EndClose(result);
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (1)
268await Task.Factory.FromAsync(channel.BeginClose, channel.EndClose, null, TaskCreationOptions.None);
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Security\SecurityUtilsEx.cs (1)
92return Task.Factory.FromAsync(co.BeginClose, co.EndClose, timeout, null, TaskCreationOptions.None);
System.ServiceModel.Primitives (9)
Internals\System\Runtime\TaskHelpers.cs (1)
199return Task.Factory.FromAsync(communicationObject.BeginClose, communicationObject.EndClose, timeout, null);
System\ServiceModel\Channels\CloseCollectionAsyncResult.cs (1)
64communicationObject.EndClose(result);
System\ServiceModel\Channels\CommunicationObject.cs (1)
1071return Task.Factory.FromAsync(other.BeginClose, other.EndClose, timeout, null);
System\ServiceModel\Channels\ReliableChannelBinder.cs (2)
300channel.EndClose(result); 466channel.EndClose(result);
System\ServiceModel\ClientBase.cs (1)
1100((ICommunicationObject)_channel).EndClose(result);
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (2)
1318_innerChannel.EndClose(result); 1458_innerChannel.EndClose(result);
System\ServiceModel\Security\SecurityUtils.cs (1)
535return Task.Factory.FromAsync(communicationObject.BeginClose, communicationObject.EndClose, timeout, null, TaskCreationOptions.None);
System.ServiceModel.Primitives.Tests (2)
ServiceModel\ThrowingChannelBase.cs (1)
47protected override void OnEndClose(IAsyncResult result) => InnerChannel.EndClose(result);
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
122await Task.Factory.FromAsync(_innerFactory.BeginClose, _innerFactory.EndClose, timeout, null);