Implemented interface member:
method
EndClose
System.ServiceModel.ICommunicationObject.EndClose(System.IAsyncResult)
13 references to EndClose
Contract.Service.IntegrationTests (2)
ServiceContractTests.4.0.0.cs (1)
416Task t = Task.Factory.FromAsync(factory.BeginClose, factory.EndClose, TaskCreationOptions.None);
ServiceContractTests.4.1.0.cs (1)
879Task factoryTask = Task.Factory.FromAsync(factory.BeginClose, factory.EndClose, TaskCreationOptions.None);
System.ServiceModel.Federation (4)
System\IdentityModel\Security\WrapperSecurityCommunicationObject.cs (2)
246CommunicationObject.EndClose(result); 398CommunicationObject.EndClose(result);
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (2)
452await Task.Factory.FromAsync(ChannelFactory.BeginClose, ChannelFactory.EndClose, timeout, null, TaskCreationOptions.None); 550_communicationObject.EndClose(result);
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Channels\NetFramingTransportChannelFactory.cs (1)
357await Task.Factory.FromAsync(localUpgrade.BeginClose, localUpgrade.EndClose, timeoutHelper.RemainingTime(), null);
System.ServiceModel.Primitives.Tests (6)
Channels\CommunicationObjectTest.cs (4)
66mco.EndClose(closeAr); 157mco.EndClose(closeAr); 252mco.EndClose(closeAr); 403mco.EndClose(closeAr);
Channels\CustomChannelTest.cs (1)
168Task task = Task.Factory.FromAsync(asyncResult, factory.EndClose);
ServiceModel\ChannelFactoryTest.cs (1)
225Task.Factory.FromAsync(factory.BeginClose(null, null), factory.EndClose).GetAwaiter().GetResult();