2 writes to count
System.ServiceModel (2)
System\ServiceModel\Dispatcher\QueryBranchOp.cs (2)
599this.count++; 626this.count--;
13 references to count
System.ServiceModel (13)
System\ServiceModel\Dispatcher\QueryBranchOp.cs (13)
510return this.count; 532for (index = 0; index < this.count; ++index) 553for (int i = 0; i < this.count; ++i) 565for (int i = 0; i < this.count; ++i) 590if (this.count == this.branches.Length) 594if (index < this.count) 596Array.Copy(this.branches, index, this.branches, index + 1, this.count - index); 617Fx.Assert(index < this.count, ""); 618if (index < this.count - 1) 620Array.Copy(this.branches, index + 1, this.branches, index, this.count - index - 1); 631if (this.count < this.branches.Length) 633QueryBranch[] branches = new QueryBranch[this.count]; 634Array.Copy(this.branches, branches, this.count);