这可能看起来像一个愚蠢的问题,但我不能为我的生活弄清楚如何访问c#中的SyndicationFeed
类。我在MSDN上看到的每一个例子或者其他假设它已经被导入了,而我找到的没有一个例子给出了它所在位置的任何指示。
例如,我正在尝试运行以下内容:
XmlReader reader = XmlReader.Create(rss_url);
SyndicationFeed.Load(reader);
但它失败了,因为当前上下文中不存在SyndicationFeed
。那里有人知道我怎么能进去吗?
答案 0 :(得分:11)
仔细阅读documentation:
命名空间:System.ServiceModel.Syndication
程序集:System.ServiceModel(在System.ServiceModel.dll中)
右键单击项目,单击“添加引用”,然后选择“System.ServiceModel.dll”
答案 1 :(得分:0)
它appears驻留在System.ServiceModel.Syndication
。
答案 2 :(得分:0)
如果您使用的是.NET Core,请搜索并安装NuGet软件包:
System.ServiceModel.Syndication