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