Channel9Downloader.DataAccess.RssRepository.DownloadFeedData C# (CSharp) Method

DownloadFeedData() private method

Downloads RSS feed data from the specified address.
private DownloadFeedData ( string address ) : System.Xml.Linq.XDocument
address string The address of the RSS feed.
return System.Xml.Linq.XDocument
        private XDocument DownloadFeedData(string address)
        {
            var webDownloader = _dependencyComposer.GetExportedValue<IWebDownloader>();
            var rssFeedData = webDownloader.DownloadString(address);
            var doc = XDocument.Parse(rssFeedData);
            return doc;
        }

Same methods

RssRepository::DownloadFeedData ( ) : System.Xml.Linq.XDocument
RssRepository::DownloadFeedData ( Category category ) : System.Xml.Linq.XDocument