System.Xml.XmlTextWriter
namespace System.Xml
{
public class XmlTextWriter : XmlWriter
{
public Stream BaseStream { get; }
public Formatting Formatting { get; set; }
public int Indentation { get; set; }
public char IndentChar { get; set; }
public bool Namespaces { get; set; }
public char QuoteChar { get; set; }
public XmlTextWriter(Stream w, Encoding encoding);
public XmlTextWriter(TextWriter w);
public XmlTextWriter(string filename, Encoding encoding);
}
}