1 type derived from EndpointConnectionPool
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\IdlingCommunicationPool.cs (1)
56protected class IdleTimeoutEndpointConnectionPool : EndpointConnectionPool
1 instantiation of EndpointConnectionPool
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ConnectionPool.cs (1)
54return new EndpointConnectionPool(this, key);
12 references to EndpointConnectionPool
dotnet-svcutil-lib (12)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ConnectionPool.cs (11)
21private Dictionary<TKey, EndpointConnectionPool> _endpointPools; 31_endpointPools = new Dictionary<TKey, EndpointConnectionPool>(); 52protected virtual EndpointConnectionPool CreateEndpointConnectionPool(TKey key) 88foreach (EndpointConnectionPool pool in _endpointPools.Values) 95foreach (KeyValuePair<TKey, EndpointConnectionPool> poolEntry in _endpointPools) 120private EndpointConnectionPool GetEndpointPool(TKey key, TimeSpan timeout) 122EndpointConnectionPool result = null; 172foreach (EndpointConnectionPool pool in _endpointPools.Values) 196EndpointConnectionPool endpointPool = GetEndpointPool(key, timeoutHelper.RemainingTime()); 204EndpointConnectionPool endpointPool = GetEndpointPool(key, timeoutHelper.RemainingTime()); 211EndpointConnectionPool endpointPool = GetEndpointPool(key, timeoutHelper.RemainingTime());
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\IdlingCommunicationPool.cs (1)
44protected override EndpointConnectionPool CreateEndpointConnectionPool(TKey key)