AppUpdater.Server.DefaultUpdateServer.DownloadString C# (CSharp) Method

DownloadString() private method

private DownloadString ( string filename ) : string
filename string
return string
        private string DownloadString(string filename)
        {
            Uri versionUrl = new Uri(updateServerUrl, filename);
            WebClient client = new WebClient();
            log.Debug("Downloading from url: {0}", versionUrl);
            return client.DownloadString(versionUrl);
        }