forked from dotnet/SyndicationFeedReaderWriter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReadRssItemWithCustomFieldsExample.cs
56 lines (49 loc) · 1.9 KB
/
ReadRssItemWithCustomFieldsExample.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Microsoft.SyndicationFeed;
using Microsoft.SyndicationFeed.Rss;
using System;
using System.Linq;
using System.Threading.Tasks;
using System.Xml;
/// <summary>
/// Reads RSS items with custom fields
/// </summary>
class ReadRssItemWithCustomFields
{
public static async Task ReadFeed(string filepath)
{
//
// Create an XmlReader from file
// Example: ..\tests\TestFeeds\rss20-2items.xml
using (var xmlReader = XmlReader.Create(filepath, new XmlReaderSettings() { Async = true }))
{
var parser = new RssParser();
var feedReader = new RssFeedReader(xmlReader, parser);
//
// Read the feed
while (await feedReader.Read())
{
if (feedReader.ElementType == SyndicationElementType.Item)
{
//
// Read the item as generic content
ISyndicationContent content = await feedReader.ReadContent();
//
// Parse the item if needed (unrecognized tags aren't available)
// Utilize the existing parser
ISyndicationItem item = parser.CreateItem(content);
Console.WriteLine($"Item: {item.Title}");
//
// Get <example:customElement> field
ISyndicationContent customElement = content.Fields.FirstOrDefault(f => f.Name == "example:customElement");
if (customElement != null)
{
Console.WriteLine($"{customElement.Name}: {customElement.Value}");
}
}
}
}
}
}