/// <summary>
 /// Sets whether the specified standard feed is selected.
 /// </summary>
 /// <param name="feed">The standard feed.</param>
 /// <param name="selected"><b>True</b> if the standard feed is selected, <b>false</b> otherwise.</param>
 public void SetFeedSelected(YouTubeStandardFeed feed, bool selected)
 {
     DotNetApi.Windows.RegistryExtensions.SetBoolean(this.crawler.Config.SpidersConfigPath + @"\StandardFeeds", feed.ToString(), selected);
 }
 /// <summary>
 /// Gets whether the specified standard feed is selected.
 /// </summary>
 /// <param name="feed">The standard feed.</param>
 /// <returns><b>True</b> if the standard feed is selected, <b>false</b> otherwise.</returns>
 public bool GetFeedSelected(YouTubeStandardFeed feed)
 {
     return DotNetApi.Windows.RegistryExtensions.GetBoolean(this.crawler.Config.SpidersConfigPath + @"\StandardFeeds", feed.ToString(), false);
 }