Get the value of the ISBN attribute. : Attribute « XML « VB.Net Tutorial






Imports System
Imports System.IO
Imports System.Xml

Public Class Sample

    Public Shared Sub Main()
        Dim reader As XmlTextReader = Nothing

        Try
            reader = New XmlTextReader("attrs.xml")
            reader.MoveToContent()
            Dim isbn As String = reader.GetAttribute("ISBN")
            Console.WriteLine("The ISBN value: " & isbn)

        Finally
            If Not (reader Is Nothing) Then
                reader.Close()
            End If
        End Try
    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.