Esempio n. 1
0
		public void insertBefore(HtmlNode newNode, HtmlNode child) {
		}
Esempio n. 2
0
		public void insertBefore(HtmlNode newNode) {
		}
Esempio n. 3
0
		///<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) {
		}
Esempio n. 4
0
		///<summary>
		///Appends an element as a child to the object.
		///</summary>
		///<param name="child"></param>
		public void appendChild(HtmlNode child) {
		}
Esempio n. 5
0
		///<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;
		}
Esempio n. 6
0
		///<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;
		}