Channel9Downloader.DataAccess.WebDownloader.DownloadString C# (CSharp) 메소드

DownloadString() 공개 메소드

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.
리턴 string
        public string DownloadString(string address)
        {
            var result = _webClient.DownloadString(address);
            return result;
        }