Implemented interface member:
method
BeginOpen
System.ServiceModel.ICommunicationObject.BeginOpen(System.AsyncCallback, System.Object)
7 references to BeginOpen
Contract.Service.IntegrationTests (1)
ServiceContractTests.4.0.0.cs (1)
307Task t = Task.Factory.FromAsync(factory.BeginOpen, factory.EndOpen, TaskCreationOptions.None);
System.ServiceModel.Federation (4)
System\IdentityModel\Security\WrapperSecurityCommunicationObject.cs (2)
261return CommunicationObject.BeginOpen(callback, state); 413return CommunicationObject.BeginOpen(callback, state);
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (2)
469await Task.Factory.FromAsync(channelFactory.BeginOpen, channelFactory.EndOpen, null, TaskCreationOptions.None); 565return _communicationObject.BeginOpen(callback, state);
System.ServiceModel.Primitives.Tests (2)
Channels\CustomChannelTest.cs (1)
151IAsyncResult openResult = factory.BeginOpen(null, null);
ServiceModel\ChannelFactoryTest.cs (1)
221Task.Factory.FromAsync(factory.BeginOpen(null, null), factory.EndOpen).GetAwaiter().GetResult();