3 writes to connectionPool
System (3)
net\System\Net\mail\smtpconnection.cs (3)
170connectionPool = ConnectionPoolManager.GetConnectionPool(servicePoint, ClientCertificates.GetHashCode().ToString(NumberFormatInfo.InvariantInfo), m_CreateConnectionCallback); 172connectionPool = ConnectionPoolManager.GetConnectionPool(servicePoint, "", m_CreateConnectionCallback); 324connectionPool = ConnectionPoolManager.GetConnectionPool(servicePoint, "", m_CreateConnectionCallback);
11 references to connectionPool
System (11)
net\System\Net\mail\smtpconnection.cs (11)
212connectionPool.PutConnection(pooledStream, pooledStream.Owner, Timeout); 238connectionPool.PutConnection(pooledStream, pooledStream.Owner, Timeout, false); 326PooledStream pooledStream = connectionPool.GetConnection((object)this, null, Timeout); 332connectionPool.PutConnection(pooledStream, pooledStream.Owner, Timeout, false); 333pooledStream = connectionPool.GetConnection((object)this, null, Timeout); 615ConnectAndHandshakeAsyncResult.connection.connectionPool.PutConnection(pooledStream, 617pooledStream = (SmtpPooledStream)ConnectAndHandshakeAsyncResult.connection.connectionPool.GetConnection((object)ConnectAndHandshakeAsyncResult, ConnectAndHandshakeAsyncResult.m_ConnectionCreatedCallback, ConnectAndHandshakeAsyncResult.connection.Timeout); 632ConnectAndHandshakeAsyncResult.connection.connectionPool.PutConnection(pooledStream, pooledStream.Owner, ConnectAndHandshakeAsyncResult.connection.Timeout, false); 669SmtpPooledStream pooledStream = (SmtpPooledStream)connection.connectionPool.GetConnection((object)this, (synchronous ? null : m_ConnectionCreatedCallback), connection.Timeout); 677connection.connectionPool.PutConnection(pooledStream, pooledStream.Owner, connection.Timeout, false); 678pooledStream = (SmtpPooledStream)connection.connectionPool.GetConnection((object)this, (synchronous ? null : m_ConnectionCreatedCallback), connection.Timeout);