Skip to content

A simple library that will parse either a url or list of urls and return you an object of type Feed.

Notifications You must be signed in to change notification settings

DanHarries/RssParserHelper.NetCore

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NuGet version (RssParserHelper.NetCore)

RssParserHelper.NetCore

A simple library that will parse either a url or list of urls and return you an object of type Feed.

To Use:

You can just pass in a single url

string url = "https://www.feedtoparse.com/feed";

var res = await RssParserHelper.GetParsedFeed(url);

Or pass in an IEnumerable<string> of the url's

var urlList = new List<string> 
  {
    "https://www.feedtoparse1.com/feed",
    "https://www.feedtoparse2.com/feed",
    "https://www.feedtoparse3.com/feed",
  };
  
var res = await RssParserHelper.GetParsedFeed(urlList);

These will return Type List<Feed>

Then process however you want, simple! 😊

About

A simple library that will parse either a url or list of urls and return you an object of type Feed.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages