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