Base:
property
CurrentPosition
Microsoft.Xml.XPath.XPathNodeIterator.CurrentPosition
14 overrides of CurrentPosition
dotnet-svcutil-lib (14)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\baseaxisquery.cs (1)
79
public override int
CurrentPosition
{ get { return position; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\CacheOutputQuery.cs (1)
75
public override int
CurrentPosition
{ get { return count; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ContextQuery.cs (1)
56
public override int
CurrentPosition
{ get { return count; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\EmptyQuery.cs (1)
20
public override int
CurrentPosition
{ get { return 0; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ExtensionQuery.cs (1)
72
public override int
CurrentPosition
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\SortQuery.cs (1)
112
public override int
CurrentPosition
{ get { return count; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\UnionExpr.cs (1)
163
public override int
CurrentPosition
{ get { throw new InvalidOperationException(); } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ValueQuery.cs (1)
22
public sealed override int
CurrentPosition
{ get { throw XPathException.Create(ResXml.Xp_NodeSetExpected); } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XmlIteratorQuery.cs (1)
51
public override int
CurrentPosition
{ get { return _it.CurrentPosition; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathArrayIterator.cs (1)
64
public override int
CurrentPosition
{ get { return index; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathEmptyIterator.cs (1)
24
public override int
CurrentPosition
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathMultyIterator.cs (1)
163
public override int
CurrentPosition
{ get { return position; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathSelectionIterator.cs (1)
57
public override int
CurrentPosition
{ get { return _position; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathSingletonIterator.cs (1)
48
public override int
CurrentPosition
5 references to CurrentPosition
dotnet-svcutil-lib (5)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ExtensionQuery.cs (2)
51
if (_queryIterator.
CurrentPosition
== 0)
78
return _queryIterator.
CurrentPosition
;
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\FilterQuery.cs (1)
72
if (value is double) return (((double)value) == qyInput.
CurrentPosition
);
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ResetableIterator.cs (1)
33
for (int i =
CurrentPosition
; i < pos; i++)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XmlIteratorQuery.cs (1)
51
public override int CurrentPosition { get { return _it.
CurrentPosition
; } }