Exemplo n.º 1
0
        public void AddChild(string childName, string childText)
        {
            var e = new HtmlElement(childName, childText);

            root.Elements.Add(e);
        }
Exemplo n.º 2
0
 public void Clear()
 {
     root = new HtmlElement {
         Name = RootName
     };
 }