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