XmlNodeList.Item Method
.NET Framework 4.5
Retrieves a node at the given index.
Namespace: System.Xml
Assembly: System.Xml (in System.Xml.dll)
Parameters
- index
- Type: System.Int32
The zero-based index into the list of nodes.
Return Value
Type: System.Xml.XmlNodeThe XmlNode with the specified index in the collection. If index is greater than or equal to the number of nodes in the list, this returns null.
The following example gets and displays the second node in the XmlNodeList.
using System; using System.IO; using System.Xml; public class Sample { public static void Main() { XmlDocument doc = new XmlDocument(); doc.LoadXml("<items>" + " <item>First item</item>" + " <item>Second item</item>" + "</items>"); //Get and display the last item node. XmlElement root = doc.DocumentElement; XmlNodeList nodeList = root.GetElementsByTagName("item"); Console.WriteLine(nodeList.Item(1).InnerXml); } }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.