Implemented interface member:
method
BeginClose
System.ServiceModel.ICommunicationObject.BeginClose(System.AsyncCallback, System.Object)
7 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 (3)
System\IdentityModel\Security\WrapperSecurityCommunicationObject.cs (2)
236
return CommunicationObject.
BeginClose
(callback, state);
388
return CommunicationObject.
BeginClose
(callback, state);
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (1)
540
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();