XmlWriterSettings.XmlWriterSettings Constructor
.NET Framework 3.0
Initializes a new instance of the XmlWriterSettings class.
Namespace: System.Xml
Assembly: System.Xml (in system.xml.dll)
XmlWriterSettings Members
System.Xml Namespace
Assembly: System.Xml (in system.xml.dll)
The following example creates an XmlWriter object that uses the TAB character for indentation.
using System; using System.IO; using System.Xml; using System.Text; public class Sample { public static void Main() { XmlWriter writer = null; try { // Create an XmlWriterSettings object with the correct options. XmlWriterSettings settings = new XmlWriterSettings(); settings.Indent = true; settings.IndentChars = ("\t"); settings.OmitXmlDeclaration = true; // Create the XmlWriter object and write some content. writer = XmlWriter.Create("data.xml", settings); writer.WriteStartElement("book"); writer.WriteElementString("item", "tesing"); writer.WriteEndElement(); writer.Flush(); } finally { if (writer != null) writer.Close(); } } }
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Reference
XmlWriterSettings ClassXmlWriterSettings Members
System.Xml Namespace