Example #1
0
 /// <summary>
 /// Returns a list of elements with the given tag name belonging to the given namespace.
 /// The complete document is searched, including the root node.
 /// </summary>
 /// <param name="namespaceURI">The namespace URI of elements to look for.</param>
 /// <param name="tagName">Either the local name of elements to look for or the special value "*", which matches all elements.</param>
 /// <returns>A NodeList of found elements in the order they appear in the tree.</returns>
 public IHtmlCollection GetElementsByTagNameNS(String namespaceURI, String tagName)
 {
     return(ChildNodes.GetElementsByTagNameNS(namespaceURI, tagName));
 }