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

◆ LoadDataSetFromTree()

void System.Xml.XmlDataDocument.LoadDataSetFromTree ( )
inlineprivate

Definition at line 963 of file XmlDataDocument.cs.

964 {
966 _ignoreXmlEvents = true;
968 IsFoliationEnabled = false;
971 try
972 {
973 LoadRows(null, base.DocumentElement);
974 SyncRows(null, base.DocumentElement, fAddRowsToTable: true);
976 }
977 finally
978 {
979 _ignoreDataSetEvents = false;
980 _ignoreXmlEvents = false;
982 }
983 }
void LoadRows(XmlBoundElement rowElem, XmlNode node)
void SyncRows(DataRow parentRow, XmlNode node, bool fAddRowsToTable)

References System.Xml.XmlDataDocument._dataSet, System.Xml.XmlDataDocument._ignoreDataSetEvents, System.Xml.XmlDataDocument._ignoreXmlEvents, System.Xml.Dictionary, System.Data.DataSet.EnforceConstraints, System.Xml.XmlDataDocument.IsFoliationEnabled, System.Xml.XmlDataDocument.LoadRows(), and System.Xml.XmlDataDocument.SyncRows().

Referenced by System.Xml.XmlDataDocument.Bind(), and System.Xml.XmlDataDocument.BindForLoad().