XmlWriterSettings

In this chapter you will learn:

  1. How to use XmlWriterSettings to control the outpit

Control the output

using System;/*from  j  a v  a2s. co m*/
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Text;
using System.Xml;

public class MainClass
{
    public static void Main()
    {
        XmlReader reader;
        XmlWriter writer;
        XmlReaderSettings readerSettings =new XmlReaderSettings();
        XmlWriterSettings writerSettings = new XmlWriterSettings();

        readerSettings.IgnoreComments = true;
        readerSettings.Schemas.Add(null, "pubs.xsd");
        readerSettings.ValidationType = ValidationType.None;

        writerSettings.OmitXmlDeclaration = true;
        writerSettings.Indent = true;
        writerSettings.NewLineOnAttributes = true;

        reader = XmlReader.Create("pubs.xml", readerSettings);
        writer = XmlWriter.Create("output.xml", writerSettings);

        while (reader.Read())
        {
            writer.WriteNode(reader, true);
        }

        reader.Close();
        writer.Close();
    }
}

Next chapter...

What you will learn in the next chapter:

  1. How to print XML document to console
Home » C# Tutorial » XML
Parse XML file
Parse XML String
Parse XML from URL
Element create
Attribute create
Comments create
XProcessingInstruction
XmlReader
Read double value from XML
XmlReader
XmlReaderSettings
XML formatter
XmlSerializer
XmlTextReader
XmlTextWriter
XmlWriter
XmlWriterSettings
Output XML to console