SyndicationFeed Class represents a top-level feed object,
Questions tagged [syndication-feed]
80 questions
39
votes
6 answers
Reading non-standard elements in a SyndicationItem with SyndicationFeed
With .net 3.5, there is a SyndicationFeed that will load in a RSS feed and allow you to run LINQ on it.
Here is an example of the RSS that I am loading:
Title of…

Jared
- 5,977
- 10
- 38
- 48
17
votes
2 answers
Is there any defined atom syndication xml schema?
Is there any defined atom syndication xml schema?
RFC 4287 only contains a Relax NG compact schema in appendix B.

Ali Ersöz
- 15,860
- 11
- 50
- 64
14
votes
4 answers
SyndicationItem.Content is Null
I'm trying to pull the contents of an RSS feed into an object that can be manipulated in code. It looks like the SyndicationFeed and SyndicationItem classes in .NET 3.5 will do what I need, except for one thing. Every time I've tried to read in the…

kdmurray
- 2,988
- 3
- 32
- 47
14
votes
3 answers
How do I use SyndicationFeed?
This may seem like a dumb question, but I cannot for the life of me figure out how to get access to the SyndicationFeed class in c#. Every single example I have seen on MSDN or otherwise assumes that it's already imported, and not a single one I…

Slippery John
- 747
- 2
- 9
- 20
9
votes
2 answers
How To Add A SyndicationElementExtension To A SyndicationItem
Using the .NET System.ServiceModel.Syndication classes...
I would like to add a new SyndicationElementExtension to a SyndicationItem that will export the following XML:

Shawn Miller
- 7,082
- 6
- 46
- 54
8
votes
3 answers
Rss20FeedFormatter Ignores TextSyndicationContent type for SyndicationItem.Summary
While using the Rss20FeedFormatter class in a WCF project, I was trying to wrap the content of my description elements with a section. I found that no matter what I did, the HTML content of the description elements was always encoded…

Page
- 9,945
- 5
- 37
- 45
8
votes
1 answer
Adding Namespaces to a SyndicationFeed rather than Individual Elements?
I have a class like this:
public static class MyFeedExtensions
{
private readonly static XNamespace _namespace = XNamespace.Get(@"http://mynamespace");
public static XElement MyElement(string value)
{
return new…

Michael Stum
- 177,530
- 117
- 400
- 535
7
votes
2 answers
SyndicationFeed Class doesn't handle RSS version 0.91
The SyndicationFeed Class in .NET only seems to support RSS version 2.0. How do I go about supporting RSS version 0.91?

Rogan
- 225
- 1
- 12
7
votes
7 answers
Is it possible to use authentication in RSS feeds using php?
I'm trying to develop a feed for an intranet document management system, so that staff can be notified of new documents. I have actually completed coding it, but there is no way to authenticate the user.
Also I'm not successful in adding the feed to…

0xdeadbeef
- 4,090
- 8
- 33
- 37
6
votes
3 answers
SyndicationFeed in Asp.net core
I have a problem with SyndicationFeed in asp.net core. I know that hasn't been ported yet to the asp.net core but I also use full .net framework so I think it should works.
Here's my code where I have an error:
SyndicationFeed feed =…

mskuratowski
- 4,014
- 15
- 58
- 109
5
votes
1 answer
Parsing RSS feed has recently been throwing Document Type Definition (DTD) errors
This is an error that has recently started to plague my rss feed parser. This morning four of my rss feeds started to throw this exception:
For security reasons DTD is prohibited in this XML document. To enable DTD processing set the DtdProcessing…

Reza Shirazian
- 2,303
- 1
- 22
- 30
5
votes
2 answers
Argotic Syndication Framework v. System.ServiceModel.Syndication
I'm investigating the Argotic Syndication Framework, and I'm pretty impressed so far. However, a lot of the current implementation--at least for RSS and Atom--seem pretty comparable to System.ServiceModel.Syndication. Does anyone have any opinions…
user29439
4
votes
1 answer
How to create a SyndicationFeed with a custom namespace
How can I generate Atom Feed which will contain the namespaces displayed in the image below? All the nodes of the Atom feed have to start with "a:".
Here is what I am doing right now, however it doesn't work.
SyndicationFeed feed = new…

Martin
- 39,309
- 62
- 192
- 278
4
votes
2 answers
SyndicationFeed: How to access content:encoded?
In a Windows 8 Store App I'm reading some Xml data using the SyndicationFeed. A few items of the RSS feeds contain for example content:encoded (xmlns:content='...') elements. I think there's no way to get the content of these elements through the…

Thrukal
- 260
- 5
- 19
4
votes
2 answers
Reading all rss items from C# SyndicationFeed
I am trying to read the RSS feed from C# code using System.ServiceModel.Syndication
var reader = XmlReader.Create(feedUrl);
var feed = SyndicationFeed.Load(reader);
Code works perfect but only gives me 25 feed items.
For the same feed url, more…

Nirav
- 187
- 3
- 11