public static string RequestUrlForUploadFile(string uploadPath, bool overwrite)
        {
            string urlForUploadFile = RequestHelper.HttpGetRequestToString(URL.UploadPath + uploadPath + "&overwrite=" + overwrite);

            return(urlForUploadFile);
        }
        public static string RequestUrlForUploadFile(string uploadPath)
        {
            string urlForUploadFile = RequestHelper.HttpGetRequestToString(URL.UploadPath + uploadPath);

            return(urlForUploadFile);
        }