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

◆ OnNodeInsertedInFragment()

void System.Xml.XmlDataDocument.OnNodeInsertedInFragment ( XmlNode node)
inlineprivate

Definition at line 2206 of file XmlDataDocument.cs.

2207 {
2209 {
2210 return;
2211 }
2212 if (rowElem == node)
2213 {
2215 return;
2216 }
2219 while (arrayList.Count > 0)
2220 {
2221 XmlBoundElement childRowElem = (XmlBoundElement)arrayList[0];
2222 arrayList.RemoveAt(0);
2224 }
2225 }
bool GetRegion(XmlNode node, [NotNullWhen(true)] out XmlBoundElement rowElem)
void SetNestedParentRegion(XmlBoundElement childRowElem)
void OnNonRowElementInsertedInFragment(XmlNode node, XmlBoundElement rowElement, ArrayList rowElemList)

References System.Xml.XmlDataDocument._mapper, System.Collections.Generic.Dictionary< TKey, TValue >.Count, System.Xml.DataSetMapper.GetRegion(), System.Xml.XmlDataDocument.OnNonRowElementInsertedInFragment(), and System.Xml.XmlDataDocument.SetNestedParentRegion().

Referenced by System.Xml.XmlDataDocument.OnNodeInserted().