XmlWriter.WriteProcessingInstruction writes out a processing instruction : XmlWriter « XML « VB.Net






XmlWriter.WriteProcessingInstruction writes out a processing instruction

 

Option Strict
Option Explicit

Imports System
Imports System.IO
Imports System.Xml

Public Class Sample
    Private Const filename As String = "sampledata.xml"

  Public Shared Sub Main()

     Dim settings As XmlWriterSettings = new XmlWriterSettings()
     settings.Indent = true
     Dim writer As XmlWriter = XmlWriter.Create(filename, settings)

     Dim PItext As String = "type=""text/xsl"" href=""book.xsl"""
     writer.WriteProcessingInstruction("xml-stylesheet", PItext)
     writer.WriteDocType("book", Nothing, Nothing, "<!ENTITY h ""hardcover"">")
     writer.WriteComment("sample XML")
     writer.WriteStartElement("book")
     writer.WriteAttributeString("genre", "Tech")
     writer.WriteAttributeString("ISBN", "1-111111-014")
     writer.WriteElementString("title", "C#")
     writer.WriteStartElement("style")
     writer.WriteEntityRef("h")
     writer.WriteEndElement()
     writer.WriteElementString("price", "9.9")
     writer.WriteCData("data")
     writer.WriteEndElement()
     writer.WriteEndDocument()
     writer.Flush()
     writer.Close()
    End Sub 'Main 
End Class 'Sample

   
  








Related examples in the same category

1.Append new child to the XmlWriter
2.Create XmlWriter using XmlWriter.Create method.
3.Saves the XML document to the specified XmlWriter.
4.Saves all the children of the node to the specified XmlWriter.
5.Saves the current node to the specified XmlWriter.
6.XmlWriter.Close closes this stream and the underlying stream.
7.Creates XmlWriter using the specified stream.
8.XmlWriter.Create creates a new XmlWriter instance using the stream and XmlWriterSettings object.
9.Creates a new XmlWriter instance using the specified filename.
10.Creates XmlWriter instance using the TextWriter and XmlWriterSettings objects.
11.XmlWriter.WriteBase64 encodes specified binary bytes as Base64
12.XmlWriter.WriteBinHex encodes specified binary bytes as BinHex
13.XmlWriter.WriteEndElement closes one element and pops the corresponding namespace scope.
14.XmlWriter.WriteNode copies data from the reader to the writer
15.XmlWriter.WriteNode (XPathNavigator, Boolean)
16.XmlWriter.WriteString writes the given text content.
17.XmlWriter.WriteValue
18.XPathNavigator.InsertBefore returns an XmlWriter
19.XPathNavigator.PrependChild returns XmlWriter to create a new child node
20.XDocument.Save Method (XmlWriter) serializes this XDocument to an XmlWriter.
21.XDocument.WriteTo writes this document to an XmlWriter.
22.XElement.Save (XmlWriter) serializes this element to an XmlWriter.
23.XElement.WriteTo writes this element to an XmlWriter.
24.XNode.WriteTo writes this node to an XmlWriter.