11 writes to count
System.ServiceModel (11)
System\ServiceModel\Dispatcher\QueryBranchOp.cs (1)
978
this.results.
count
= 0;
System\ServiceModel\Dispatcher\QueryUtil.cs (10)
127
this.
count
= 0;
232
this.buffer[this.
count
++] = t;
268
this.
count
= newCount;
299
this.
count
= 0;
329
this.
count
= addCount;
333
this.
count
= 0;
342
this.
count
= 1;
434
this.
count
= newCount;
468
this.
count
= newCount;
486
this.
count
--;
28 references to count
System.ServiceModel (28)
System\ServiceModel\Dispatcher\QueryBranchOp.cs (1)
947
return this.results.
count
;
System\ServiceModel\Dispatcher\QueryOpcode.cs (1)
491
return this.opcodes.
count
;
System\ServiceModel\Dispatcher\QueryUtil.cs (26)
168
return this.
count
;
228
if (this.
count
== this.buffer.Length)
230
Array.Resize<T>(ref this.buffer, this.
count
> 0 ? this.
count
* 2 : 16);
255
if (1 == addBuffer.
count
)
261
int newCount = this.
count
+ addBuffer.
count
;
267
Array.Copy(addBuffer.buffer, 0, this.buffer, this.
count
, addBuffer.
count
);
319
int addCount = addBuffer.
count
;
349
Array.Copy(this.buffer, dest, this.
count
);
379
for (int i = 0; i < this.
count
; ++i)
391
for (int i = startAt; i < this.
count
; ++i)
409
return (index >= 0 && index < this.
count
);
429
int newCount = this.
count
+ reserveCount;
439
if (index == this.
count
)
446
if (index > this.
count
)
460
newCount = this.
count
+ reserveCount;
466
Array.Copy(this.buffer, index, this.buffer, index + reserveCount, this.
count
- index);
482
if (index < this.
count
- 1)
484
Array.Copy(this.buffer, index + 1, this.buffer, index, this.
count
- index - 1);
491
Array.Sort<T>(this.buffer, 0, this.
count
, comparer);
521
if (this.
count
< this.buffer.Length)
523
if (0 == this.
count
)
529
T[] newBuffer = new T[this.
count
];
530
Array.Copy(this.buffer, newBuffer, this.
count
);