Channel9Downloader.DataAccess.WebDownloader.DownloadString C# (CSharp) Method

DownloadString() public method

Downloads the requested resource as a String. The resource to download is specified as a String containing the URI.
public DownloadString ( string address ) : string
address string The address of the resource to download.
return string
        public string DownloadString(string address)
        {
            var result = _webClient.DownloadString(address);
            return result;
        }