7 implementations of BeginOpen
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CommunicationObject.cs (1)
126public IAsyncResult BeginOpen(AsyncCallback callback, object state)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
603IAsyncResult ICommunicationObject.BeginOpen(AsyncCallback callback, object state)
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (2)
294IAsyncResult ICommunicationObject.BeginOpen(AsyncCallback callback, object state) 736IAsyncResult ICommunicationObject.BeginOpen(AsyncCallback callback, object state)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1466public IAsyncResult BeginOpen(AsyncCallback callback, object state)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
252public IAsyncResult BeginOpen(AsyncCallback callback, object state) 427public IAsyncResult BeginOpen(AsyncCallback callback, object state)
2 references to BeginOpen
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
738return ((ICommunicationObject)_channel).BeginOpen(callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1468return _innerChannel.BeginOpen(callback, state);