Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ HasNodeTypeInNextSiblings()

bool System.Xml.XmlDocument.HasNodeTypeInNextSiblings ( XmlNodeType nt,
XmlNode refNode )
inlineprivate

Definition at line 677 of file XmlDocument.cs.

678 {
679 for (XmlNode xmlNode = refNode; xmlNode != null; xmlNode = xmlNode.NextSibling)
680 {
681 if (xmlNode.NodeType == nt)
682 {
683 return true;
684 }
685 }
686 return false;
687 }

Referenced by System.Xml.XmlDocument.CanInsertAfter(), and System.Xml.XmlDocument.CanInsertBefore().