Currently I am only getting the links in the header, i cannot receive the links that are apart of the updated body.
private static void HTMLtoLinkList(string HTMLTEXT)
{
    var LParser = new Regex(@"\b(?:https?://|www\.)\S+\b", RegexOptions.Compiled | RegexOptions.IgnoreCase);
    foreach (Match m in LParser.Matches(HTMLTEXT))
    {
        Console.WriteLine(m);
        Console.ReadLine();            
    }
}
 
    