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