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