SharpRSS/SharpRss/SyndicationManager.cs

16 lines
381 B
C#
Raw Normal View History

2023-05-29 18:02:24 +02:00
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);
2023-05-29 20:18:37 +02:00
feed = GenericSyndicationFeed.Create(feedUri);
2023-05-29 18:02:24 +02:00
return false;
}
}
}