Чтение текстового содержимого из SyndicationContent - PullRequest
7 голосов
/ 27 ноября 2009

Привет, я пытаюсь прочитать содержимое строки из элементов ленты.

SyndicationFeed feed = SyndicationFeed.Load(feedReader);    
SydicationContent itemContent = feed.Items.ToList<SyndicationItem>()[0].Content;
string retrivedContent = itemContent .......???

как прочитать текст из itemContent?

В документации показано, как создать TextSyndicationContent

TextSyndicationContent textContent = new TextSyndicationContent("Some text content"); 

SyndicationItem item = new SyndicationItem("Item Title", textContent, new Uri("server/items";), "ItemID", DateTime.Now); 

Есть ли способ изменить это?

спасибо

Ответы [ 2 ]

23 голосов
/ 02 июня 2010
TextSyndicationContent tsc = (TextSyndicationContent)item.Content;
string myContent = tsc.Text;
0 голосов
/ 27 ноября 2009

Вы можете взглянуть на SyndicationFeed или SyndicationContent .

...