using System; using Argotic.Syndication; namespace SharpRss { public static class SyndicationManager { public static bool TryGetFeed(string feedUrl, out GenericSyndicationFeed? feed) { feed = null; Uri feedUri = new Uri(feedUrl); feed = GenericSyndicationFeed.Create(feedUri); return false; } } }