7 implementations of BeginOpen
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CommunicationObject.cs (1)
131public IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
608IAsyncResult ICommunicationObject.BeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (2)
299IAsyncResult ICommunicationObject.BeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 741IAsyncResult ICommunicationObject.BeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1471public IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
257public IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 432public IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
9 references to BeginOpen
dotnet-svcutil-lib (9)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\LayeredChannel.cs (1)
74return _innerChannel.BeginOpen(timeout, callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
42return _innerChannelFactory.BeginOpen(timeout, callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\OpenCollectionAsyncResult.cs (1)
38IAsyncResult result = collection[index].BeginOpen(_timeoutHelper.RemainingTime(), s_nestedCallback, callbackState);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelFactory.cs (1)
426return _innerChannelFactory.BeginOpen(timeout, callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (3)
296return ((ICommunicationObject)this).BeginOpen(_channelFactory.InternalOpenTimeout, callback, state); 323return InnerChannel.BeginOpen(timeout, callback, state); 743return ((ICommunicationObject)_channel).BeginOpen(timeout, callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ChannelDispatcher.cs (1)
540return _listener.BeginOpen(timeout, callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1473return _innerChannel.BeginOpen(timeout, callback, state);