Banshee.Podcasting.PodcastService.AddFeed C# (CSharp) Method

AddFeed() private method

private AddFeed ( string uri, string title ) : void
uri string
title string
return void
        private void AddFeed (string uri, string title)
        {
            // TODO replace autodownload w/ actual default preference
            FeedsManager.Instance.FeedManager.CreateFeed (uri, title, FeedAutoDownload.None, 0);
            source.NotifyUser ();
            source.UpdateFeedMessages ();
        }