6 implementations of EndClose
System.ServiceModel.Federation (3)
System\IdentityModel\Security\WrapperSecurityCommunicationObject.cs (1)
396public void EndClose(IAsyncResult result)
System\ServiceModel\Federation\WSTrustChannel.cs (1)
308void ICommunicationObject.EndClose(IAsyncResult result)
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (1)
548void ICommunicationObject.EndClose(IAsyncResult result)
System.ServiceModel.Primitives (3)
netstandard.cs (3)
501void System.ServiceModel.ICommunicationObject.EndClose(System.IAsyncResult result) { } 559void System.ServiceModel.ICommunicationObject.EndClose(System.IAsyncResult result) { } 1395public void EndClose(System.IAsyncResult result) { }
18 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)
254await 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.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);