4 implementations of EndConnect
System.ServiceModel (4)
System\ServiceModel\Channels\BufferedConnection.cs (1)
326public IConnection EndConnect(IAsyncResult result)
System\ServiceModel\Channels\PipeConnection.cs (1)
1769public IConnection EndConnect(IAsyncResult result)
System\ServiceModel\Channels\SocketConnection.cs (1)
1762public IConnection EndConnect(IAsyncResult result)
System\ServiceModel\Channels\TracingConnectionInitiator.cs (1)
53public IConnection EndConnect(IAsyncResult result)
3 references to EndConnect
System.ServiceModel (3)
System\ServiceModel\Channels\BufferedConnection.cs (1)
328return new BufferedConnection(connectionInitiator.EndConnect(result), flushTimeout, writeBufferSize);
System\ServiceModel\Channels\ConnectionPool.cs (1)
1115TrackConnection(parent.connectionInitiator.EndConnect(connectResult));
System\ServiceModel\Channels\TracingConnectionInitiator.cs (1)
57TracingConnection connection = new TracingConnection(this.connectionInitiator.EndConnect(result), false);