3 writes to index
System.Private.Xml (3)
System\Xml\XPath\Internal\XPathArrayIterator.cs (3)
27
this.
index
= it.index;
74
index
++;
80
index
= 0;
10 references to index
System.Private.Xml (10)
System\Xml\XPath\Internal\XPathArrayIterator.cs (8)
27
this.index = it.
index
;
54
Debug.Assert(
index
<= list.Count);
56
if (
index
< 1)
60
return (XPathNavigator?)list[
index
- 1];
64
public override int CurrentPosition { get { return
index
; } }
69
Debug.Assert(
index
<= list.Count);
70
if (
index
== list.Count)
88
private object? debuggerDisplayProxy { get { return
index
< 1 ? null : (object)new XPathNavigator.DebuggerDisplayProxy(Current!); } }
System\Xml\Xsl\XsltOld\ActionFrame.cs (2)
327
Debug.Assert(
index
> 0, "MoveNext() wasn't called");
328
return ((SortKey)this.list[this.
index
- 1]!).Node;