azachert
azachert

Reputation: 121

Rss parsing in .NET Core

Is there anything in .NET Core to support RSS parsing?
Is there any library ready to overtake role of System.ServiceModel.Syndication from .NET 4.6?

Upvotes: 1

Views: 1830

Answers (1)

Fabian
Fabian

Reputation: 2086

It seems like this has not been ported yet.

But RSS is pretty basic XML. I guess you can just rewrite the parsing code on your own using XDocument or XmlSerializer.

This solution looks quite good. It has been there before they introduced the System.ServiceModel.Syndication namespace. (I haven't tested it)

Upvotes: 2

Related Questions