Terraria v1.4.4.9
Terraria source code documentation
All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros

◆ GetContentSibling() [1/2]

static bool MS.Internal.Xml.Cache.XPathNodeHelper.GetContentSibling ( ref XPathNode[] pageNode,
ref int idxNode )
inlinestatic

Definition at line 77 of file XPathNodeHelper.cs.

78 {
79 XPathNode[] pageNode2 = pageNode;
80 int num = idxNode;
81 if (!pageNode2[num].IsAttrNmsp)
82 {
83 num = pageNode2[num].GetSibling(out pageNode2);
84 if (num != 0)
85 {
86 pageNode = pageNode2;
87 idxNode = num;
88 return true;
89 }
90 }
91 return false;
92 }

References MS.Internal.Xml.Cache.XPathNode.GetSibling().

Referenced by MS.Internal.Xml.Cache.XPathDocumentNavigator.MoveToNext(), and MS.Internal.Xml.Cache.XPathDocumentNavigator.MoveToNext().