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

◆ Attributes() [2/2]

IEnumerable< XAttribute > System.Xml.Linq.XElement.Attributes ( XName? name)
inline

Definition at line 241 of file XElement.cs.

242 {
243 if (!(name != null))
244 {
245 return XAttribute.EmptySequence;
246 }
247 return GetAttributes(name);
248 }
IEnumerable< XAttribute > GetAttributes(XName name)
Definition XElement.cs:1077

References System.Xml.Linq.XAttribute.EmptySequence, System.Xml.Linq.XElement.GetAttributes(), and System.Xml.Linq.XElement.name.