1 type derived from EndpointConnectionPool
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Channels\IdlingCommunicationPool.cs (1)
45protected class IdleTimeoutEndpointConnectionPool : EndpointConnectionPool
1 instantiation of EndpointConnectionPool
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Channels\ConnectionPool.cs (1)
49return new EndpointConnectionPool(this, key);
12 references to EndpointConnectionPool
System.ServiceModel.NetFramingBase (12)
System\ServiceModel\Channels\ConnectionPool.cs (11)
23private readonly Dictionary<TKey, EndpointConnectionPool> _endpointPools; 31_endpointPools = new Dictionary<TKey, EndpointConnectionPool>(); 47protected virtual EndpointConnectionPool CreateEndpointConnectionPool(TKey key) 85foreach (EndpointConnectionPool pool in _endpointPools.Values) 92foreach (KeyValuePair<TKey, EndpointConnectionPool> poolEntry in _endpointPools) 117private EndpointConnectionPool GetEndpointPool(TKey key, TimeSpan timeout) 119EndpointConnectionPool result = null; 173foreach (EndpointConnectionPool pool in _endpointPools.Values) 197EndpointConnectionPool endpointPool = GetEndpointPool(key, timeoutHelper.RemainingTime()); 205EndpointConnectionPool endpointPool = GetEndpointPool(key, timeoutHelper.RemainingTime()); 212EndpointConnectionPool endpointPool = GetEndpointPool(key, timeoutHelper.RemainingTime());
System\ServiceModel\Channels\IdlingCommunicationPool.cs (1)
33protected override EndpointConnectionPool CreateEndpointConnectionPool(TKey key)