4 implementations of BeginConnect
System.ServiceModel (4)
System\ServiceModel\Channels\BufferedConnection.cs (1)
321public IAsyncResult BeginConnect(Uri uri, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\PipeConnection.cs (1)
1764public IAsyncResult BeginConnect(Uri uri, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\SocketConnection.cs (1)
1751public IAsyncResult BeginConnect(Uri uri, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\TracingConnectionInitiator.cs (1)
44public IAsyncResult BeginConnect(Uri uri, TimeSpan timeout, AsyncCallback callback, object state)
3 references to BeginConnect
System.ServiceModel (3)
System\ServiceModel\Channels\BufferedConnection.cs (1)
323return connectionInitiator.BeginConnect(uri, timeout, callback, state);
System\ServiceModel\Channels\ConnectionPool.cs (1)
1094result = parent.connectionInitiator.BeginConnect(
System\ServiceModel\Channels\TracingConnectionInitiator.cs (1)
49return this.connectionInitiator.BeginConnect(uri, timeout, callback, state);