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