Creates an XmlDeclaration node with the specified values. : XmlDeclaration « XML « VB.Net






Creates an XmlDeclaration node with the specified values.

 


Option Explicit
Option Strict

Imports System
Imports System.IO
Imports System.Xml

Public Class Sample

    Public Shared Sub Main()
        Dim doc As New XmlDocument()
        doc.LoadXml("<book genre='Computer' ISBN='1-111111-57-5'>" & _
                    "<title>C#</title>" & _
                    "</book>")

        Dim xmldecl As XmlDeclaration
        xmldecl = doc.CreateXmlDeclaration("1.0", Nothing, Nothing)

        Dim root As XmlElement = doc.DocumentElement
        doc.InsertBefore(xmldecl, root)

        doc.Save(Console.Out)
    End Sub
End Class

   
  








Related examples in the same category