2 writes to totalCount
System.ServiceModel.Internals (2)
System\Runtime\InputQueue.cs (2)
980this.totalCount--; 999this.totalCount++;
9 references to totalCount
System.ServiceModel.Internals (9)
System\Runtime\InputQueue.cs (9)
930get { return this.totalCount > 0; } 935get { return this.totalCount > this.pendingCount; } 940get { return this.totalCount; } 945if (this.pendingCount == this.totalCount) 954Fx.AssertAndThrow(this.totalCount != this.pendingCount, "ItemQueue does not contain any available items"); 977Fx.AssertAndThrow(totalCount != 0, "ItemQueue does not contain any items"); 987if (this.totalCount == this.items.Length) 990for (int i = 0; i < this.totalCount; i++) 997int tail = (this.head + this.totalCount) % this.items.Length;