Quantcast
Channel: Create RSS feed in asp.net core 1.0 - Stack Overflow
Browsing all 3 articles
Browse latest View live

Answer by snickler for Create RSS feed in asp.net core 1.0

They've released a preview NuGet package for Microsoft.SyndicationFeed. On the dotnet/wcf repo, they've provided an example to get you up and running.EDIT: I've posted a Repo and a NuGet package that...

View Article



Answer by Asest for Create RSS feed in asp.net core 1.0

// action to return the feed[Route("site/GetRssFeed/{type}")]public IActionResult GetRssFeed(ArticleStatusTypes type){ var feed = _rss.BuildXmlFeed(type); return Content(feed, "text/xml");}public...

View Article

Create RSS feed in asp.net core 1.0

I am working in Asp.net Core 1.0 MVC 6I am trying to write a component to provide RSS feeds from my websites.I found this post that suggests that System.ServiceModel.Syndication has yet to be ported to...

View Article
Browsing all 3 articles
Browse latest View live


Latest Images