Implemented interface member:
method
BeginClose
System.ServiceModel.ICommunicationObject.BeginClose(System.AsyncCallback, System.Object)
8 references to BeginClose
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 (1)
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (1)
558
return _communicationObject.
BeginClose
(callback, state);
System.ServiceModel.Primitives (3)
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
590
return _serviceChannel.
BeginClose
(callback, state);
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
212
return CommunicationObject.
BeginClose
(callback, state);
369
return CommunicationObject.
BeginClose
(callback, state);
System.ServiceModel.Primitives.Tests (2)
Channels\CustomChannelTest.cs (1)
167
IAsyncResult asyncResult = factory.
BeginClose
(null, null);
ServiceModel\ChannelFactoryTest.cs (1)
225
Task.Factory.FromAsync(factory.
BeginClose
(null, null), factory.EndClose).GetAwaiter().GetResult();