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

◆ Load() [4/4]

virtual void System.Xml.XmlDocument.Load ( XmlReader reader)
inlinevirtual

Reimplemented in System.Xml.XmlDataDocument.

Definition at line 1297 of file XmlDocument.cs.

1298 {
1299 try
1300 {
1301 IsLoading = true;
1302 _actualLoadingStatus = true;
1303 RemoveAll();
1304 fEntRefNodesPresent = false;
1305 fCDataNodesPresent = false;
1306 _reportValidity = true;
1307 XmlLoader xmlLoader = new XmlLoader();
1308 xmlLoader.Load(this, reader, _preserveWhitespace);
1309 }
1310 finally
1311 {
1312 IsLoading = false;
1313 _actualLoadingStatus = false;
1314 _reportValidity = true;
1315 }
1316 }
virtual void RemoveAll()
Definition XmlNode.cs:1033

References System.Xml.XmlDocument._actualLoadingStatus, System.Xml.XmlDocument._preserveWhitespace, System.Xml.XmlDocument._reportValidity, System.Xml.XmlDocument.fCDataNodesPresent, System.Xml.XmlDocument.fEntRefNodesPresent, System.Xml.XmlDocument.IsLoading, and System.Xml.XmlNode.RemoveAll().