Writes raw markup manually from a string. : XmlTextWriter « XML « C# / C Sharp






Writes raw markup manually from a string.

 

using System;
using System.IO;
using System.Xml;

public class Sample
{
  public static void Main()
  {
     XmlTextWriter writer = new XmlTextWriter (Console.Out);
     writer.Formatting = Formatting.Indented;
     writer.WriteStartElement("Items");
     writer.WriteStartElement("Item");
     writer.WriteString("Write unescaped text:  ");
     writer.WriteRaw("this & that");
     writer.WriteEndElement();
     writer.WriteStartElement("Item");
     writer.WriteString("Write the same string using WriteString:  ");
     writer.WriteString("this & that");
     writer.WriteEndElement();
     writer.WriteEndElement();
     writer.Close();  
  }

}

   
  








Related examples in the same category

1.Use XmlTextWriter to create Xml document
2.Write attribute
3.Close an element
4.Control the formatting
5.Write the double value out
6.Closes this stream and the underlying stream.
7.Flush what is in the buffer to the underlying streams and flush the underlying stream.
8.XmlTextWriter.Indentation Property gets or sets how many IndentChars to write
9.XmlTextWriter.LookupPrefix returns the closest prefix in the current namespace scope
10.XmlTextWriter.WriteCData writes out a block containing the specified text.
11.Use specified Unicode character value.
12.Closes one element and pops the corresponding namespace scope.
13.Writes out the namespace-qualified name.
14.Writes out the given white space.