The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
XmlNodeList::Item Method (Int32)
.NET Framework (current version)
Retrieves a node at the given index.
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::XmlNode^The 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.Xml.dll> using namespace System; using namespace System::IO; using namespace System::Xml; int main() { XmlDocument^ doc = gcnew 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 ); }
Universal Windows Platform
Available since 10
.NET Framework
Available since 1.1
Available since 10
.NET Framework
Available since 1.1
Show: