1

上次我在这里发布我的问题: 如何在 WPF 中读取 Atom XAML 文件? .它与How to Read Atom Xaml. 一位 StackOverflow 用户发布了有效的答案。但是如何阅读具有usernamepassword没有扩展名的 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#)

4

0 回答 0