Implemented interface member:
method
BeginOpen
System.ServiceModel.ICommunicationObject.BeginOpen(System.TimeSpan, System.AsyncCallback, System.Object)
13 references to BeginOpen
System.ServiceModel.Federation (1)
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (1)
588return _communicationObject.BeginOpen(timeout, callback, state);
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Channels\NetFramingTransportChannelFactory.cs (1)
336return Task.Factory.FromAsync(localUpgrade.BeginOpen, localUpgrade.EndOpen, timeout, null);
System.ServiceModel.Primitives (6)
System\ServiceModel\Channels\CommunicationObject.cs (1)
204return BeginOpen(DefaultOpenTimeout, callback, state);
System\ServiceModel\Channels\ServiceChannel.cs (1)
2018return channel.BeginOpen(timeout, callback, state);
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
620return _serviceChannel.BeginOpen(timeout, callback, state);
System\ServiceModel\Security\SecuritySessionSecurityTokenProvider.cs (1)
746return _serviceChannelFactory.BeginOpen(timeout, callback, state);
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
247return CommunicationObject.BeginOpen(timeout, callback, state); 399return CommunicationObject.BeginOpen(timeout, callback, state);
System.ServiceModel.Primitives.Tests (5)
Channels\CommunicationObjectTest.cs (5)
60IAsyncResult openAr = mco.BeginOpen(timeout, callback: null, state: null); 151IAsyncResult openAr = mco.BeginOpen(timeout, callback: null, state: null); 246IAsyncResult openAr = mco.BeginOpen(timeout, callback: null, state: null); 370IAsyncResult openAr = mco.BeginOpen(timeout, callback: null, state: null); 395IAsyncResult openAr = mco.BeginOpen(timeout, callback: null, state: null);