XmlNamedNodeMap.Item(Int32) Metod
Definition
Viktigt
En del information gäller för förhandsversionen av en produkt och kan komma att ändras avsevärt innan produkten blir allmänt tillgänglig. Microsoft lämnar inga garantier, uttryckliga eller underförstådda, avseende informationen som visas här.
Hämtar noden vid det angivna indexet XmlNamedNodeMapi .
public:
virtual System::Xml::XmlNode ^ Item(int index);
public virtual System.Xml.XmlNode Item(int index);
public virtual System.Xml.XmlNode? Item(int index);
abstract member Item : int -> System.Xml.XmlNode
override this.Item : int -> System.Xml.XmlNode
Public Overridable Function Item (index As Integer) As XmlNode
Parametrar
- index
- Int32
Indexpositionen för noden som ska hämtas XmlNamedNodeMapfrån . Indexet är nollbaserat. Därför är indexet för den första noden 0 och indexet för den sista noden är Count -1.
Returer
Vid XmlNode det angivna indexet. Om index är mindre än 0 eller större än eller lika med egenskapen Countnull returneras.
Exempel
I följande exempel används XmlAttributeCollection klassen (som ärver från XmlNamedNodeMap) för att visa alla attribut i en bok.
using System;
using System.IO;
using System.Xml;
public class Sample
{
public static void Main()
{
XmlDocument doc = new XmlDocument();
doc.LoadXml("<book genre='novel' publicationdate='1997'> " +
" <title>Pride And Prejudice</title>" +
"</book>");
XmlAttributeCollection attrColl = doc.DocumentElement.Attributes;
Console.WriteLine("Display all the attributes for this book...");
for (int i=0; i < attrColl.Count; i++)
{
Console.WriteLine("{0} = {1}", attrColl.Item(i).Name, attrColl.Item(i).Value);
}
}
}
Imports System.IO
Imports System.Xml
public class Sample
public shared sub Main()
Dim doc as XmlDocument = new XmlDocument()
doc.LoadXml("<book genre='novel' publicationdate='1997'> " & _
" <title>Pride And Prejudice</title>" & _
"</book>")
Dim attrColl as XmlAttributeCollection = doc.DocumentElement.Attributes
Console.WriteLine("Display all the attributes for this book...")
Dim i As Integer
For i = 0 To attrColl.Count - 1
Console.WriteLine("{0} = {1}", attrColl.Item(i).Name,attrColl.Item(i).Value)
Next
end sub
end class