6 instantiations of XPathDocumentNavigator
dotnet-svcutil-lib (6)
FrameworkFork\Microsoft.Xml\Xml\Cache\XPathDocumentIterator.cs (4)
25
this.ctxt = new
XPathDocumentNavigator
(ctxt);
33
this.ctxt = new
XPathDocumentNavigator
(iter.ctxt);
188
_end = new
XPathDocumentNavigator
(root);
257
_end = new
XPathDocumentNavigator
(root);
FrameworkFork\Microsoft.Xml\Xml\Cache\XPathDocumentNavigator.cs (1)
150
return new
XPathDocumentNavigator
(_pageCurrent, _idxCurrent, _pageParent, _idxParent);
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathDocument.cs (1)
310
return new
XPathDocumentNavigator
(_pageRoot, _idxRoot, null, 0);
23 references to XPathDocumentNavigator
dotnet-svcutil-lib (23)
FrameworkFork\Microsoft.Xml\Xml\Cache\XPathDocumentIterator.cs (8)
17
protected
XPathDocumentNavigator
ctxt;
23
protected XPathDocumentBaseIterator(
XPathDocumentNavigator
ctxt)
65
public XPathDocumentElementChildIterator(
XPathDocumentNavigator
parent, string name, string namespaceURI) : base(parent)
122
public XPathDocumentKindChildIterator(
XPathDocumentNavigator
parent, XPathNodeType typ) : base(parent)
170
private
XPathDocumentNavigator
_end;
177
public XPathDocumentElementDescendantIterator(
XPathDocumentNavigator
root, string name, string namespaceURI, bool matchSelf) : base(root)
242
private
XPathDocumentNavigator
_end;
249
public XPathDocumentKindDescendantIterator(
XPathDocumentNavigator
root, XPathNodeType typ, bool matchSelf) : base(root)
FrameworkFork\Microsoft.Xml\Xml\Cache\XPathDocumentNavigator.cs (13)
51
public XPathDocumentNavigator(
XPathDocumentNavigator
nav) : this(nav._pageCurrent, nav._idxCurrent, nav._pageParent, nav._idxParent)
470
XPathDocumentNavigator
that = other as
XPathDocumentNavigator
;
511
XPathDocumentNavigator
that = other as
XPathDocumentNavigator
;
613
idxEnd = GetFollowingEnd(end as
XPathDocumentNavigator
, false, out pageEnd);
640
XPathDocumentNavigator
endTiny = end as
XPathDocumentNavigator
;
781
XPathDocumentNavigator
that = other as
XPathDocumentNavigator
;
810
XPathDocumentNavigator
that = other as
XPathDocumentNavigator
;
1032
private int GetFollowingEnd(
XPathDocumentNavigator
end, bool useParentOfVirtual, out XPathNode[] pageEnd)
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathNavigatorKeyComparer.cs (2)
34
XPathDocumentNavigator
xpdocNav;
40
else if (null != (xpdocNav = obj as
XPathDocumentNavigator
))