Ejemplo n.º 1
0
        public HtmlNode PrependChild(string type)
        {
            var newElement = _htmlNode.OwnerDocument.CreateElement(type);

            _htmlNode.PrependChild(newElement);

            return(new HtmlNode(newElement));
        }