We want to check if a site exists/is available by using the following piece of code:
var request = (HttpWebRequest) WebRequest.Create(url);
request.Method = "HEAD";
As we don't want to download the whole site I thought it might be enough to just get the headers and evaluate them.
Am I missing there some thoughts or is it really enough to check if the website is up and reachable?