public static void Main()
string url = "http://www.alchourouk.com/xml_top_article/rss.xml";
HttpWebRequest webReq = WebRequest.CreateHttp(url);
webReq.CookieContainer = new CookieContainer();
webReq.UserAgent = "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0";
webReq.Accept = "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8";
webReq.Referer = "http://www.alchourouk.com/";
webReq.Headers.Add(HttpRequestHeader.AcceptLanguage, "en-us,en;q=0.5");
webReq.Headers.Add(HttpRequestHeader.CacheControl, "no-cache");
webReq.AllowAutoRedirect = true;
webReq.MaximumAutomaticRedirections = 50;
using (WebResponse response = webReq.GetResponse())
using (Stream stream = response.GetResponseStream())
StreamReader reader = new StreamReader(stream);