Display all the attributes in the collection. : Attribute « XML « VB.Net Tutorial






Imports System
Imports System.IO
Imports System.Xml

public class Sample

  public shared sub Main()

    Dim doc as XmlDocument = new XmlDocument()
    doc.LoadXml("<book genre='novel' ISBN='11111111111'><title>AAA</title></book>")      

    'Create an attribute collection.
    Dim attrColl as XmlAttributeCollection = doc.DocumentElement.Attributes

    Console.WriteLine("Display all the attributes in the collection...")
    Dim i as integer
    for i=0  to attrColl.Count-1
      Console.Write("{0} = ", attrColl.ItemOf(i).Name)
      Console.Write("{0}", attrColl.ItemOf(i).Value)
      Console.WriteLine()
    next

  end sub
end class








25.9.Attribute
25.9.1.Display all the attributes in the collection.
25.9.2.Creates an attribute and adds it to an XML document.
25.9.3.Assigns the XmlArrayAttribute to two arrays, and serializes a class instance that contains those arrays.
25.9.4.Remove an attribute from the document.
25.9.5.Adds an attribute to an element.
25.9.6.Get the value of the ISBN attribute.