public void insertBefore(HtmlNode newNode, HtmlNode child) { }
public void insertBefore(HtmlNode newNode) { }
///<summary> ///Removes a child node from the object. ///</summary> ///<param name="oNode">Object that specifies the element to be removed from the document.</param> public void removeChild(HtmlNode oNode) { }
///<summary> ///Appends an element as a child to the object. ///</summary> ///<param name="child"></param> public void appendChild(HtmlNode child) { }
///<summary> /// Compares the position of the current node against another node in any other document. ///</summary> ///<param name = "otherNode ">the node that's being compared against.</param> public DocumentPosition compareDocumentPosition(HtmlNode otherNode) { return DocumentPosition.Precedes; }
///<summary> /// Replaces an existing child element with a new child element. ///</summary> ///<param name = "newNode"></param> ///<param name = "existingChild"></param> ///<returns>Returns a reference to the object that is replaced.</returns> public HtmlNode replaceChild(HtmlNode newNode, HtmlNode existingChild) { return null; }