Exemplo n.º 1
0
        public virtual HtmlBaseTag AddTag(string name, string text = null)
        {
            HtmlBaseTag inerTag = new HtmlBaseTag(name, text);
            _tagContent.Add(inerTag);

            return inerTag;
        }
Exemplo n.º 2
0
 public virtual HtmlBaseTag AddTag(HtmlBaseTag inerTag)
 {
     _tagContent.Add(inerTag);
     return inerTag;
 }