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

◆ Descendants() [2/2]

IEnumerable< XElement > System.Xml.Linq.XContainer.Descendants ( XName? name)
inlineinherited

Definition at line 570 of file XContainer.cs.

571 {
572 if (!(name != null))
573 {
574 return XElement.EmptySequence;
575 }
576 return GetDescendants(name, self: false);
577 }
IEnumerable< XElement > GetDescendants(XName name, bool self)

References System.Xml.Linq.XElement.EmptySequence, and System.Xml.Linq.XContainer.GetDescendants().