How to make asynchronous calls using HtmlAgilityPack?
I'm trying to get the table with id table-matches available here . The problem is that table is loaded using ajax so I don't get the full html code when I download the page: string url = "http://www.oddsportal.com/matches/soccer/20180701/"; using (HttpClient client = new HttpClient()) { using (HttpResponseMessage response = client.GetAsync(url).Result) { using (HttpContent content = response.Content) { string result = content.ReadAsStringAsync().Result; } } } the html returned does not contains any table, so I tried to see if there is a problem of the library, infact I setted on Chrome