1 write to idleConnections
System.ServiceModel (1)
System\ServiceModel\Channels\ConnectionPool.cs (1)
561this.idleConnections = new Pool<TItem>(maxCount);
5 references to idleConnections
System.ServiceModel (5)
System\ServiceModel\Channels\ConnectionPool.cs (5)
567get { return idleConnections.Count; } 582bool result = this.idleConnections.Return(connection); 599TD.OutboundConnectionsPerEndpointRatio(this.idleConnections.Count, maxCount); 608TItem ret = this.idleConnections.Take(); 611TD.OutboundConnectionsPerEndpointRatio(this.idleConnections.Count, maxCount);