Exemple #1
0
 public static IEnumerable <IHTMLImage> GetClonedImages(this IHTMLDocument e)
 {
     return
         (from k in e.getElementsByTagName("img")
          select CloneImage((IHTMLImage)k));
 }