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

DownloadFeedData() private method

Downloads RSS feed data for the specified category.
private DownloadFeedData ( Category category ) : System.Xml.Linq.XDocument
category Channel9Downloader.Entities.Category Category of the feed.
return System.Xml.Linq.XDocument
        private XDocument DownloadFeedData(Category category)
        {
            return DownloadFeedData(string.Format("http://channel9.msdn.com{0}/RSS", category.RelativePath));
        }

Same methods

RssRepository::DownloadFeedData ( ) : System.Xml.Linq.XDocument
RssRepository::DownloadFeedData ( string address ) : System.Xml.Linq.XDocument