XContainer.Elements Method (XName)
Returns a filtered collection of the child elements of this element or document, in document order. Only elements that have a matching XName are included in the collection.
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
Parameters
- name
- Type: System.Xml.Linq.XName
The XName to match.
Return Value
Type: System.Collections.Generic.IEnumerable<XElement>An IEnumerable<T> of XElement containing the children of the XContainer that have a matching XName, in document order.
The following example creates an XML tree, and then selects several child elements using this axis method.
XElement xmlTree = new XElement("Root", new XElement("Type1", 1), new XElement("Type1", 2), new XElement("Type2", 3), new XElement("Type2", 4), new XElement("Type2", 5) ); IEnumerable<XElement> elements = from el in xmlTree.Elements("Type2") select el; foreach (XElement el in elements) Console.WriteLine(el);
This example produces the following output:
<Type2>3</Type2> <Type2>4</Type2> <Type2>5</Type2>
The following is the same example, but in this case the XML is in a namespace. For more information, see Working with XML Namespaces.
XNamespace aw = "http://www.adventure-works.com"; XElement xmlTree = new XElement(aw + "Root", new XAttribute(XNamespace.Xmlns + "aw", "http://www.adventure-works.com"), new XElement(aw + "Type1", 1), new XElement(aw + "Type1", 2), new XElement(aw + "Type2", 3), new XElement(aw + "Type2", 4), new XElement(aw + "Type2", 5) ); IEnumerable<XElement> elements = from el in xmlTree.Elements(aw + "Type2") select el; foreach (XElement el in elements) Console.WriteLine(el);
This example produces the following output:
<aw:Type2 xmlns:aw="http://www.adventure-works.com">3</aw:Type2> <aw:Type2 xmlns:aw="http://www.adventure-works.com">4</aw:Type2> <aw:Type2 xmlns:aw="http://www.adventure-works.com">5</aw:Type2>
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.