1 instantiation of ConnectionPool
System (1)
net\System\Net\ConnectionPoolManager.cs (1)
53connectionPool = new ConnectionPool(servicePoint, servicePoint.ConnectionLimit, 0, servicePoint.MaxIdleTime, createConnectionCallback);
23 references to ConnectionPool
System (23)
net\System\Net\_CommandStream.cs (1)
62ConnectionPool connectionPool,
net\System\Net\_FtpControlStream.cs (1)
96ConnectionPool connectionPool,
net\System\Net\_PooledStream.cs (3)
30private ConnectionPool m_ConnectionPool; // the pooler that the connection came from 54internal PooledStream(ConnectionPool connectionPool, TimeSpan lifetime, bool checkLifetime) : base () { // pooled constructor 135internal ConnectionPool Pool {
net\System\Net\connectionpool.cs (6)
20internal delegate PooledStream CreateConnectionDelegate(ConnectionPool pool); 141public AsyncConnectionPoolRequest(ConnectionPool pool, object owningObject, GeneralAsyncDelegate asyncCallback, int creationTimeout) { 150public ConnectionPool Pool; 258ConnectionPool pThis = (ConnectionPool) context; 448((ConnectionPool) context).CancelErrorCallback();
net\System\Net\ConnectionPoolManager.cs (7)
48internal static ConnectionPool GetConnectionPool(ServicePoint servicePoint, string groupName, CreateConnectionDelegate createConnectionCallback) { 51ConnectionPool connectionPool = (ConnectionPool) m_ConnectionPools[key]; 82ConnectionPool connectionPool = (ConnectionPool)(m_ConnectionPools[key]); 111ConnectionPool connectionPool = (ConnectionPool)(m_ConnectionPools[key]);
net\System\Net\FtpWebRequest.cs (2)
226private ConnectionPool m_ConnectionPool; 1668private static PooledStream CreateFtpConnection(ConnectionPool pool) {
net\System\Net\mail\smtpconnection.cs (2)
20private static PooledStream CreateSmtpPooledStream(ConnectionPool pool) { 49ConnectionPool connectionPool;
net\System\Net\mail\SmtpTransport.cs (1)
29internal SmtpPooledStream(ConnectionPool connectionPool, TimeSpan lifetime, bool checkLifetime) : base (connectionPool,lifetime,checkLifetime) {