6 overrides of CurrentPosition
dotnet-svcutil-lib (6)
FrameworkFork\Microsoft.Xml\Xml\Cache\XPathDocumentIterator.cs (1)
48public override int CurrentPosition
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXPathNavigator.cs (2)
2198public override int CurrentPosition { get { return 0; } } 2229public override int CurrentPosition
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\IteratorFilter.cs (1)
34public override int CurrentPosition { get { return _position; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ResetableIterator.cs (1)
45public abstract override int CurrentPosition { get; }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathAxisIterator.cs (1)
59public override int CurrentPosition
3 references to CurrentPosition
dotnet-svcutil-lib (3)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\NodeFunctions.cs (1)
53return (double)context.CurrentPosition;
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathNodeIterator.cs (2)
34count = clone.CurrentPosition; 119sb.Append(_nodeIterator.CurrentPosition);