From e0352e374ce6c1f2cec70ee15dec9580bec43711 Mon Sep 17 00:00:00 2001 From: Max <51083570+DRdrProfessor@users.noreply.github.com> Date: Mon, 29 May 2023 20:18:37 +0200 Subject: [PATCH] IDK --- SharpRss/SyndicationManager.cs | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/SharpRss/SyndicationManager.cs b/SharpRss/SyndicationManager.cs index 9dc5e57..9847ee0 100644 --- a/SharpRss/SyndicationManager.cs +++ b/SharpRss/SyndicationManager.cs @@ -1,27 +1,16 @@ 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); + feed = GenericSyndicationFeed.Create(feedUri); return false; } - - public static void Test() - { - - } } } \ No newline at end of file