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