コード例 #1
0
 /// <summary>
 /// Returns the index of the given child
 /// </summary>
 /// <param name="child">child</param>
 /// <returns>index</returns>
 public int IndexOf(HtmlNode child)
 {
     return(HtmlDomHelper.IndexOf(this, child));
 }
コード例 #2
0
 /// <summary>
 /// Returns all element, which match the given name
 /// </summary>
 /// <param name="name">name</param>
 /// <returns>list of elements</returns>
 public new HtmlElementList GetElementsByTagName(string name)
 {
     return(HtmlDomHelper.GetElementsByTagName(this, name));
 }