Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
5answers
6k views

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: <rss version="2.0" ...
4
votes
4answers
1k views

SyndicationFeed: Content as CDATA?

I'm using .NET's SyndicationFeed to create RSS and ATOM feeds. Unfortunately, I need HTML content in the description element (the Content property of the SyndicationItem) and the formatter ...
3
votes
2answers
523 views

Atom entry with C#

How can I make an Atom entry with C# and .NET 4 ? I need to make an entry with this structure: <entry xmlns="http://www.w3.org/2005/Atom" xmlns:f="XXX:aaa"> <title>title1</title> ...
3
votes
4answers
989 views

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 ...
0
votes
1answer
104 views

C# Change Namespace Prefix on Root Node of SyndicationItem

Not even sure if I'm asking the right question, but here it goes. Basically because of a lack of support of the WCF DS client for "OData deep inserts" I'm having to manually build up an Atom request. ...
0
votes
1answer
32 views

How can I serialize a collection of SyndicationItem objects?

I have a collection of SyndicationItem objects that I need to serialize but I'm not sure how I go about doing that. Suggestions? IEnumberable<SyndicationItem> blogPosts = GetBlogPosts(); ... ...
0
votes
2answers
542 views

Parse SyndicationItem to c# class

What's the best way to parse the folowing rss Syndication Item into a c# class: <rss version="2.0" xmlns:fh="http://rss.flightstats.com/ns/rss/1.0"> <channel> <title>FlightStats - ...
0
votes
2answers
484 views

Reading content text from SyndicationContent

Hi i am trying to read the content into string from feed items. SyndicationFeed feed = SyndicationFeed.Load(feedReader); SydicationContent itemContent = ...