How can I get the XML code in this link
I'm trying to do but it does not
public void sonucAl()
{
string adres = "https://www.betorder.com/GetLiveScore?qq=62642&sportTypeId=1&fid=0&lang=TR&countryId=all&checkBoxSelected=all";
WebRequest gelenIstek = HttpWebRequest.Create(adres);
WebResponse gelenCevap;
using (gelenCevap = gelenIstek.GetResponse())
{
using (StreamReader donenDeger = new StreamReader(gelenCevap.GetResponseStream()))
{
string gelenBilgi = donenDeger.ReadToEnd();
string gonder = gelenBilgi;
div.InnerHtml = gonder;
}
}
}