前回ここに質問を投稿しました: How to read an Atom XAML File in WPF? . に関連していましたHow to Read Atom Xaml
。1人のStackOverflowユーザーが投稿した回答が機能しました。username
しかし、拡張子を持つ、またはpassword
持たないRSS/フィードを読むにはどうすればよい.xml
でしょうか?
コードは次のとおりです。
XmlReader reader = XmlReader.Create(@"http://link1/myxaml.xml");
SyndicationFeed feed = SyndicationFeed.Load(reader);
var titles = from item in feed.Items
select new
{
item.Title.Text,
};
var descriptions = from item in feed.Items
select new
{
item.Summary.Text
};
foreach (var t in titles)
{
title_textbox.Text += t.Text + " "; //Your All Titles Here
}
foreach (var des in descriptions)
{
description_textbox.Text += des.Text + " "; //Your All Descriptions Here
}
注:私はWPF(C#)を使用しています