SetPrettyPrinting() private method

private SetPrettyPrinting ( bool b ) : void
b bool
return void
Exemplo n.º 1
0
		internal virtual string Debug()
		{
			XmlProcessor raw = new XmlProcessor();
			raw.SetIgnoreComments(false);
			raw.SetIgnoreProcessingInstructions(false);
			raw.SetIgnoreWhitespace(false);
			raw.SetPrettyPrinting(false);
			return raw.EcmaToXmlString(this.dom);
		}