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