Browser.proc.CallstackList.WriteCData C# (CSharp) Method

WriteCData() private method

private WriteCData ( System writer, string tag, string value ) : void
writer System
tag string
value string
return void
        private void WriteCData(System.Xml.XmlTextWriter writer, string tag, string value)
        {
            writer.WriteStartElement(tag);
            writer.WriteCData(value);
            writer.WriteEndElement();
        }