Loads an XML string into the XmlTextReader object using the StringReader class. : XmlTextReader « XML « VB.Net Tutorial






Imports System
Imports System.IO
Imports System.Xml

public class Sample 

  public shared sub Main()

    Dim xmlData as string 
    xmlData = "<book><title>AAA</title><price>5.5</price></book>"

    Dim reader as XmlTextReader = new XmlTextReader(new StringReader(xmlData))
    reader.WhitespaceHandling = WhitespaceHandling.None

    ' Display each element node.
    while reader.Read()
       select case reader.NodeType
         case XmlNodeType.Element
           Console.Write("<{0}>", reader.Name)
         case XmlNodeType.Text
           Console.Write(reader.Value)
         case XmlNodeType.EndElement
           Console.Write("</{0}>", reader.Name)
       end select       
    end while           
    reader.Close()       
  end sub
end class








25.2.XmlTextReader
25.2.1.Read xml document by using the XmlTextReader
25.2.2.Loads an XML string into the XmlTextReader object using the StringReader class.