2 implementations of ConnectAsync
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\BufferedConnection.cs (1)
301
public async Task<IConnection>
ConnectAsync
(Uri uri, TimeSpan timeout)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SocketConnection.cs (1)
587
public async Task<IConnection>
ConnectAsync
(Uri uri, TimeSpan timeout)
2 references to ConnectAsync
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\BufferedConnection.cs (1)
303
return new BufferedConnection(await _connectionInitiator.
ConnectAsync
(uri, timeout), _flushTimeout, _writeBufferSize);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ConnectionPoolHelper.cs (1)
105
localRawConnection = await _connectionInitiator.
ConnectAsync
(_via, connectTimeout);