33
1
using System;
2
using HtmlAgilityPack;
3
using System.Net;
4
using System.Linq;
5
6
public class Program
7
{
8
public static void Main()
9
{
10
// finally calling web method to grab all images from web page
11
ExtractAllImages();
12
}
13
static void ExtractAllImages()
14
{
15
16
// declare html document
17
var document = new HtmlWeb().Load("https://www.technologycrowds.com/2019/12/net-core-web-api-tutorial.html");
18
19
// now using LINQ to grab/list all images from website
20
var ImageURLs = document.DocumentNode.Descendants("img")
21
.Select(e => e.GetAttributeValue("src", null))
22
.Where(s => !String.IsNullOrEmpty(s));
23
24
// now showing all images from web page one by one
25
foreach(var item in ImageURLs)
26
{
27
if (item != null)
28
{
29
Console.WriteLine(item);
30
}
31
}
32
}
33
}
Cached Result
Compilation error (line 17, col 32): Could not find an implementation of the query pattern for source type 'object'. 'Select' not found.