XmlNamedNodeMap.Item(Int32) Méthode

Définition

Récupère le nœud à l’index spécifié dans le XmlNamedNodeMap.

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

Paramètres

index
Int32

Position d’index du nœud à récupérer à partir du XmlNamedNodeMap. L’index est de base zéro ; par conséquent, l’index du premier nœud est 0 et l’index du dernier nœud est Count -1.

Retours

À XmlNode l’index spécifié. Si index la valeur est inférieure à 0 ou supérieure ou égale à la Count propriété, null elle est retournée.

Exemples

L’exemple suivant utilise la XmlAttributeCollection classe (qui hérite de XmlNamedNodeMap) pour afficher tous les attributs d’un livre.

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

S’applique à