The HttpDownloader derives from the WebClient class. It serves as a helper to download web pages.
The original code was found in here. To suit my needs i added a few modifications.
HttpDownloader _downloader = new HttpDownloader("https://www.google.com");
string html = _downloader.GetPageHtml();