1 write to users
System.Data.Linq (1)
SqlClient\SqlConnectionManager.cs (1)
33this.users = new List<IConnectionUser>(maxUsers);
11 references to users
System.Data.Linq (11)
SqlClient\SqlConnectionManager.cs (11)
57if (this.users.Count == this.maxUsers) { 58this.BootUser(this.users[0]); 60this.users.Add(user); 67int index = this.users.IndexOf(user); 69this.users.RemoveAt(index); 98while (this.users.Count > 0) { 99this.BootUser(this.users[0]); 126int index = this.users.IndexOf(user); 128this.users.RemoveAt(index); 130if (this.users.Count == 0 && this.autoClose && this.transaction == null && System.Transactions.Transaction.Current == null) { 150if (this.users.Count == 0 && this.autoClose) {