I have a list of URLs, and the meaning of this is that I am checking our websites if anyone is down / offline we would get a notification and that works except some of the URLs crash at this line 
HttpWebResponse httpRes = (HttpWebResponse)httpReq.GetResponse();
But the rest is working just fine? can anyone tell me what I'm doing wrong? I've tried URLs with HTTPS, HTTP and even with only www...
 public void CheckUrl()//List Of URLs
    {
        List<string> urls = new List<string>() {
        "https//:www.example.com/something1/buy",
        "https//:www.example.com/something2/buy",
        "https//:www.example.com/something3/buy",
        "https//:www.example.com/something4/buy",
        };
        //walks through all the URL:s
        foreach (var url in urls)
        {
            //Creating URL Request
            HttpWebRequest httpReq = (HttpWebRequest)WebRequest.Create(url);
            httpReq.AllowAutoRedirect = false;
            try
            {
                WebClient client = new WebClient();
                string downloadString = client.DownloadString(url);
                //Trying to find a response
                HttpWebResponse httpRes = (HttpWebResponse)httpReq.GetResponse();
                if ((httpRes.StatusCode != HttpStatusCode.OK || httpRes.StatusCode != HttpStatusCode.Found) && downloadString.Contains("404 -") || downloadString.Contains("Server Error"))
                {
                    // Code for NotFound resources goes here.
                    SendVerificationLinkEmail(httpRes.StatusCode.ToString(), url);
                    foreach (var number in Numbers)
                    {
                        SendSms(url, number);
                    }
                }
                //Close the response.
                httpRes.Close();
            }
            catch(Exception e)
            {
                //sending only to admin to check it out first
                SendExeptionUrl(url);
                foreach (var number in Numbers)
                {
                    SendSms(url, number);
                }
            }
        }
        Application.Exit();
    }
