19 overrides of Current
dotnet-svcutil-lib (19)
FrameworkFork\Microsoft.Xml\Xml\Cache\XPathDocumentIterator.cs (1)
40public override XPathNavigator Current
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXPathNavigator.cs (2)
2197public override XPathNavigator Current { get { return _nav; } } 2224public override XPathNavigator Current
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\baseaxisquery.cs (1)
80public override XPathNavigator Current { get { return currentNode; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\CacheOutputQuery.cs (1)
61public override XPathNavigator Current
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ContextQuery.cs (1)
29public override XPathNavigator Current { get { return contextNode; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\EmptyQuery.cs (1)
25public override XPathNavigator Current { get { return null; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ExtensionQuery.cs (1)
43public override XPathNavigator Current
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\IteratorFilter.cs (1)
33public override XPathNavigator Current { get { return _innerIterator.Current; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\SortQuery.cs (1)
91public override XPathNavigator Current
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\UnionExpr.cs (1)
162public override XPathNavigator Current { get { return _currentNode; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ValueQuery.cs (1)
21public sealed override XPathNavigator Current { get { throw XPathException.Create(ResXml.Xp_NodeSetExpected); } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XmlIteratorQuery.cs (1)
31public override XPathNavigator Current { get { return _it.Current; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathArrayIterator.cs (1)
50public override XPathNavigator Current
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathAxisIterator.cs (1)
54public override XPathNavigator Current
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathEmptyIterator.cs (1)
19public override XPathNavigator Current
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathMultyIterator.cs (1)
153public override XPathNavigator Current
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathSelectionIterator.cs (1)
56public override XPathNavigator Current { get { return _nav; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathSingletonIterator.cs (1)
43public override XPathNavigator Current
34 references to Current
dotnet-svcutil-lib (34)
FrameworkFork\Microsoft.Xml\Xml\Dom\XPathNodeList.cs (1)
54XmlNode n = GetNode(_nodeIterator.Current);
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\AbsoluteQuery.cs (1)
20base.contextNode = context.Current.Clone();
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\BooleanFunctions.cs (1)
82string lang = nodeIterator.Current.XmlLang;
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ChildrenQuery.cs (1)
58currentNode = _iterator.Current;
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ContextQuery.cs (1)
33contextNode = context.Current; // We don't clone here. Because we never move it.
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\DescendantQuery.cs (1)
62currentNode = _nodeIterator.Current;
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ExtensionQuery.cs (2)
55return _queryIterator.Current; 67return _queryIterator.Current;
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\followingquery.cs (1)
80currentNode = _iterator.Current;
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\FunctionQuery.cs (2)
79argVals[i] = new XPathSelectionIterator(nodeIterator.Current, _args[i]); 84return ProcessResult(_function.Invoke(xsltContext, argVals, nodeIterator.Current));
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\IDQuery.cs (1)
22XPathNavigator contextNode = context.Current.Clone();
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\IteratorFilter.cs (2)
33public override XPathNavigator Current { get { return _innerIterator.Current; } } 40if (_innerIterator.Current.LocalName == _name)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\NodeFunctions.cs (1)
40return context.Current;
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\NumberFunctions.cs (1)
66return XmlConvert.ToXPathDouble(nodeIterator.Current.Value);
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\precedingquery.cs (1)
81currentNode = _workIterator.Current;
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\Query.cs (1)
217Debug.Assert(curr == query.Current, "AssertQuery(): query.Advance() != query.Current");
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\StringFunctions.cs (3)
98return nodeIterator.Current.Value; 211return nodeIterator.Current.Value.Length; 223str1 = nodeIterator.Current.Value;
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XmlIteratorQuery.cs (2)
31public override XPathNavigator Current { get { return _it.Current; } } 37return _it.Current;
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathArrayIterator.cs (1)
36this.list.Add(nodeIterator.Current.Clone());
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathMultyIterator.cs (3)
105XmlNodeOrder order = Query.CompareNodes(it.Current, arr[item + 1].Current); 159return arr[firstNotEmpty].Current;
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathNavigator.cs (2)
1194return iter.Current; 1259return new XPathSelectionIterator(context.Current, query);
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathNodeIterator.cs (5)
44private object debuggerDisplayProxy { get { return Current == null ? null : (object)new XPathNavigator.DebuggerDisplayProxy(Current); } } 72return _current.Current.Clone(); 121if (_nodeIterator.Current == null) 128sb.Append(new XPathNavigator.DebuggerDisplayProxy(_nodeIterator.Current).ToString());