Acme.Northwind.Install.XmlHelper.AppendCData C# (CSharp) Method

AppendCData() public static method

A convenience method to append a CDATA section to an XmlTextWriter
public static AppendCData ( this writer, string tag, string data ) : void
writer this
tag string
data string
return void
		public static void AppendCData(this XmlTextWriter writer, string tag, string data)
		{
			writer.WriteStartElement(tag);
			writer.WriteCData(data);
			writer.WriteEndElement();
		}