31
1
using System;
2
using HtmlAgilityPack;
3
4
public class Program
5
{
6
public static void Main()
7
{
8
// calling method
9
ExtractHref("https://technologycrowds.com");
10
}
11
12
static void ExtractHref(string URL)
13
{
14
// declaring & loading dom
15
HtmlWeb web = new HtmlWeb();
16
HtmlAgilityPack.HtmlDocument doc = new HtmlAgilityPack.HtmlDocument();
17
doc = web.Load(URL);
18
19
// extracting all links
20
foreach (HtmlNode link in doc.DocumentNode.SelectNodes("//a[@href]"))
21
{
22
HtmlAttribute att = link.Attributes["href"];
23
24
if (att.Value.Contains("a"))
25
{
26
// showing output
27
Console.WriteLine(att.Value);
28
}
29
}
30
}
31
}
Cached Result
Compilation error (line 17, col 32): Could not find an implementation of the query pattern for source type 'object'. 'Select' not found.