2 writes to items
System.ServiceModel (2)
System\ServiceModel\Dispatcher\QueryNode.cs (2)
495
this.
items
= new NodeSequenceItem[capacity];
844
this.
items
= newItems;
45 references to items
System.ServiceModel (45)
System\ServiceModel\Dispatcher\QueryNode.cs (45)
539
return this.
items
[index];
547
return this.
items
;
565
return this.
items
[0].LocalName;
578
return this.
items
[0].Name;
591
return this.
items
[0].Namespace;
648
Fx.Assert(this.
items
.Length > 0, "");
649
if (this.count == this.
items
.Length)
651
this.Grow(this.
items
.Length * 2);
654
this.
items
[this.count++].Set(node, this.position, this.sizePosition);
659
Fx.Assert(this.
items
.Length > 0, "");
660
if (this.count == this.
items
.Length)
662
this.Grow(this.
items
.Length * 2);
666
this.
items
[this.count++].Set(node, this.position, this.sizePosition);
671
Fx.Assert(this.
items
.Length > 0, "");
672
if (this.count == this.
items
.Length)
674
this.Grow(this.
items
.Length * 2);
678
this.
items
[this.count++].Set(ref item, this.position, this.sizePosition);
683
Fx.Assert(this.
items
.Length > 0, "");
684
if (this.count == this.
items
.Length)
686
this.Grow(this.
items
.Length * 2);
689
this.
items
[this.count] = item;
690
this.
items
[this.count++].Size = size;
695
Fx.Assert(this.
items
.Length > 0, "");
696
if (this.count == this.
items
.Length)
698
this.Grow(this.
items
.Length * 2);
701
this.
items
[this.count++] = item;
738
if (this.
items
[i].Compare(val, op))
751
if (this.
items
[i].Compare(val, op))
763
if (this.
items
[i].Compare(ref item, op))
776
if (this.Compare(ref sequence.
items
[i], op))
806
if (this.
items
[i].Equals(val))
818
if (this.
items
[i].Equals(val))
829
int size = sequence.
items
[itemIndex].Size;
832
return sequence.
items
[-size].Size;
840
if (this.
items
!= null)
842
Array.Copy(this.
items
, newItems, this.
items
.Length);
901
this.
items
[i].SetPositionAndSize(i + 1, this.count);
903
this.
items
[this.count - 1].Flags |= NodeSequenceItemFlags.NodesetLast;
930
this.
items
[sizePos].Size = this.position;
931
this.
items
[sizePos + this.position - 1].Last = true;
938
this.
items
[-this.sizePosition].SetSizeAndLast();
947
return this.
items
[0].StringValue();
965
buff.Add(this.
items
[i].Node);
968
buff.Add(otherSeq.
items
[i].Node);