WriteNamespaces() public method

public WriteNamespaces ( string defaultNamespace ) : void
defaultNamespace string
return void
Beispiel #1
0
		void WriteCompact (RncWriter writer)
		{
			RelaxngGrammar g = this as RelaxngGrammar;
			string ns = (g != null ? g.DefaultNamespace : null);
			writer.WriteNamespaces (ns);
			WriteRnc (writer);
		}