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

◆ CanInsertAfter()

override bool System.Xml.XmlDocumentFragment.CanInsertAfter ( XmlNode newChild,
XmlNode refChild )
inlinepackagevirtual

Reimplemented from System.Xml.XmlNode.

Definition at line 97 of file XmlDocumentFragment.cs.

98 {
99 if (newChild.NodeType == XmlNodeType.XmlDeclaration)
100 {
101 if (refChild == null)
102 {
103 return LastNode == null;
104 }
105 return false;
106 }
107 return true;
108 }
override? XmlLinkedNode LastNode

References System.Xml.Dictionary, and System.Xml.XmlDocumentFragment.LastNode.