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

◆ SetNestedParentRow()

static void System.Xml.XmlDataDocument.SetNestedParentRow ( DataRow childRow,
DataRow parentRow )
inlinestaticprivate

Definition at line 2156 of file XmlDataDocument.cs.

2157 {
2159 if (nestedParentRelation != null)
2160 {
2161 if (parentRow == null || nestedParentRelation.ParentKey.Table != parentRow.Table)
2162 {
2163 childRow.SetParentRow(null, nestedParentRelation);
2164 }
2165 else
2166 {
2168 }
2169 }
2170 }
static DataRelation GetNestedParentRelation(DataRow row)

References System.Xml.XmlDataDocument.GetNestedParentRelation().

Referenced by System.Xml.XmlDataDocument.SetNestedParentRegion(), and System.Xml.XmlDataDocument.SyncRows().