1 type derived from EndpointConnectionPool
System.ServiceModel (1)
System\ServiceModel\Channels\IdlingCommunicationPool.cs (1)
56protected class IdleTimeoutEndpointConnectionPool : EndpointConnectionPool
1 instantiation of EndpointConnectionPool
System.ServiceModel (1)
System\ServiceModel\Channels\ConnectionPool.cs (1)
56return new EndpointConnectionPool(this, key);
13 references to EndpointConnectionPool
System.ServiceModel (13)
System\ServiceModel\Channels\ConnectionPool.cs (11)
21Dictionary<TKey, EndpointConnectionPool> endpointPools; 31this.endpointPools = new Dictionary<TKey, EndpointConnectionPool>(); 54protected virtual EndpointConnectionPool CreateEndpointConnectionPool(TKey key) 90foreach (EndpointConnectionPool pool in endpointPools.Values) 97foreach (KeyValuePair<TKey, EndpointConnectionPool> poolEntry in endpointPools) 122EndpointConnectionPool GetEndpointPool(TKey key, TimeSpan timeout) 124EndpointConnectionPool result = null; 174foreach (EndpointConnectionPool pool in endpointPools.Values) 206EndpointConnectionPool endpointPool = GetEndpointPool(key, timeoutHelper.RemainingTime()); 214EndpointConnectionPool endpointPool = GetEndpointPool(key, timeoutHelper.RemainingTime()); 221EndpointConnectionPool endpointPool = GetEndpointPool(key, timeoutHelper.RemainingTime());
System\ServiceModel\Channels\IdlingCommunicationPool.cs (1)
44protected override EndpointConnectionPool CreateEndpointConnectionPool(TKey key)
System\ServiceModel\Channels\NamedPipeConnectionPool.cs (1)
35protected override EndpointConnectionPool CreateEndpointConnectionPool(string key)