10 references to Pool
System.Data (10)
fx\src\data\System\Data\ProviderBase\DbConnectionInternal.cs (6)
434DbConnectionPool connectionPool = Pool; 520if (!_connectionIsDoomed && Pool.UseLoadBalancing) { 525if ((now.Ticks - _createTime.Ticks) > Pool.LoadBalanceTimeout.Ticks) { 552DbConnectionPool pool = Pool; 753if (null != Pool) { 821DbConnectionPool pool = Pool;
fx\src\data\System\Data\ProviderBase\DbConnectionPool.cs (2)
806if ((oldConnection != null) && (oldConnection.Pool == this)) { 816var oldConnectionPool = oldConnection.Pool;
fx\src\data\System\Data\SqlClient\SqlInternalConnectionTds.cs (1)
584return IsTransactionRoot && (!IsKatmaiOrNewer || null == Pool);
fx\src\data\System\Data\SqlClient\TdsParserStateObject.cs (1)
2222Debug.Assert(_parser.Connection == null || _parser.Connection.Pool != null, "Shouldn't be calling IsConnectionAlive on non-pooled connections");