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

◆ SkipNotify()

bool System.Xml.Linq.XObject.SkipNotify ( )
inlinepackageinherited

Definition at line 467 of file XObject.cs.

468 {
469 XObject xObject = this;
470 while (true)
471 {
472 if (xObject != null && xObject.annotations == null)
473 {
474 xObject = xObject.parent;
475 continue;
476 }
477 if (xObject == null)
478 {
479 return true;
480 }
481 if (xObject.Annotation<XObjectChangeAnnotation>() != null)
482 {
483 break;
484 }
485 xObject = xObject.parent;
486 }
487 return false;
488 }

Referenced by System.Xml.Linq.Inserter.Add(), System.Xml.Linq.XContainer.Add(), System.Xml.Linq.XElement.RemoveAttributes(), and System.Xml.Linq.XContainer.RemoveNodes().