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