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

◆ OnFoliated()

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

Definition at line 1345 of file XmlDataDocument.cs.

1346 {
1347 while (true)
1348 {
1349 try
1350 {
1351 if (_pointers.Count <= 0)
1352 {
1353 break;
1354 }
1355 foreach (DictionaryEntry pointer in _pointers)
1356 {
1357 object value = pointer.Value;
1358 ((IXmlDataVirtualNode)value).OnFoliated(node);
1359 }
1360 break;
1361 }
1362 catch (Exception e) when (ADP.IsCatchableExceptionType(e))
1363 {
1364 }
1365 }
1366 }
static bool IsCatchableExceptionType(Exception e)
Definition ADP.cs:790

References System.Xml.XmlDataDocument._pointers, System.Collections.Hashtable.Count, System.Xml.Dictionary, System.Data.Common.ADP.IsCatchableExceptionType(), System.pointer, and System.value.

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