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

◆ Attributes() [1/2]

static IEnumerable< XAttribute > System.Xml.Linq.Extensions.Attributes ( this IEnumerable< XElement?> source)
inlinestatic

Definition at line 7 of file Extensions.cs.

8 {
9 if (source == null)
10 {
11 throw new ArgumentNullException("source");
12 }
13 return GetAttributes(source, null);
14 }
static IEnumerable< XAttribute > GetAttributes(IEnumerable< XElement > source, XName name)

References System.Xml.Linq.Extensions.GetAttributes(), and System.source.