public static HttpWebResponse GetResponseFromServer(string path) { var target = new GetWorker(path); target.DoWork(); return(target.GetResponse()); }
static bool ExecuteGetWorker(string url) { var target = new GetWorker(url); target.DoWork(); _responseData = target.GetResponseData(); return(target.WasHTTPS); }