1 write to _idleConnections
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ConnectionPool.cs (1)
545_idleConnections = new Pool<TItem>(maxCount);
5 references to _idleConnections
dotnet-svcutil-lib (5)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ConnectionPool.cs (5)
551get { return _idleConnections.Count; } 566bool result = _idleConnections.Return(connection); 577WcfEventSource.Instance.OutboundConnectionsPerEndpointRatio(_idleConnections.Count, _maxCount); 586TItem ret = _idleConnections.Take(); 589WcfEventSource.Instance.OutboundConnectionsPerEndpointRatio(_idleConnections.Count, _maxCount);