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