Skip to content

dncuug/X.Web.RSS

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

98 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

X.Web.RSS

NuGet Version Twitter URL

X.Web.RSS is a .NET library designed for generating and managing RSS feeds. It provides an easy-to-use API for creating and manipulating RSS feed elements, making it simple to integrate RSS functionality into .NET applications.

W3C Validagtion Valid RSS

RSS feeds which generated by this library successfully pass W3C validation. You can test your RSS feeds at http:https://validator.w3.org/feed.

Introduction

Easy to use library to create simple rss feeds and read foreign rss feeds. All processes are based on XmlSerializer and can be used as an example of how to use XmlSerializer :)

Usage example

To read foreign rss feed you need to get stream with rss data and call RssDocument.Load

    var request = WebRequest.Create("http:https://example.org/rss/");
    var response = request.GetResponse();
    var stream = response.GetResponseStream();
    Rss rss = RssDocument.Load(stream);
    
    Assert.AreEqual("Example", rss.Channel.Title);

RSS object creating example

Complete rss object will look like this:

    return new RssDocument
            {
                Channel =
                    new RssChannel
                    {
                        AtomLink = new RssLink { Href = new RssUrl("http:https://atomlink.com"), Rel = Rel.self, Type = "text/plain" },
                        Category = "category",
                        Cloud =
                            new RssCloud
                            {
                                Domain = "domain",
                                Path = "path",
                                Port = 1234,
                                Protocol = Protocol.xmlrpc,
                                RegisterProcedure = "registerProcedure"
                            },
                        Copyright = "copyrignt (c)",
                        Description = "long description",
                        Image =
                            new RssImage
                            {
                                Description = "Image Description",
                                Height = 100,
                                Width = 100,
                                Link = new RssUrl("http:https://image.link.url.com"),
                                Title = "title",
                                Url = new RssUrl("http:https://image.url.com")
                            },
                        Language = new CultureInfo("en"),
                        LastBuildDate = new DateTime(2011, 7, 17, 15, 55, 41),
                        Link = new RssUrl("http:https://channel.url.com"),
                        ManagingEditor = new RssEmail("[email protected] (manager)"),
                        PubDate = new DateTime(2011, 7, 17, 15, 55, 41),
                        Rating = "rating",
                        SkipDays = new List<Day> { Day.Thursday, Day.Wednesday },
                        SkipHours = new List<Hour> { new Hour(22), new Hour(15), new Hour(4) },
                        TextInput =
                            new RssTextInput
                            {
                                Description = "text input desctiption",
                                Link = new RssUrl("http:https://text.input.link.com"),
                                Name = "text input name",
                                Title = "text input title"
                            },
                        Title = "channel title",
                        TTL = 10,
                        WebMaster = new RssEmail("[email protected] (webmaster)"),
                        Items =
                            new List<RssItem>
                                        {
                                            new RssItem
                                                {
                                                    Author = new RssEmail("[email protected] (author)"),
                                                    Category =
                                                        new RssCategory
                                                            {
                                                                Domain = "category domain value", 
                                                                Text = "category text value"
                                                            },
                                                    Comments = new RssUrl("http:https://rss.item.comment.url.com"),
                                                    Description = "item description",
                                                    Enclosure =
                                                        new RssEnclosure
                                                            {
                                                                Length = 1234,
                                                                Type = "text/plain",
                                                                Url = new RssUrl("http:https://rss.item.enclosure.type.url.com")
                                                            },
                                                    Link = new RssUrl("http:https://rss.item.link.url.com"),
                                                    PubDate = new DateTime(2011, 7, 17, 15, 55, 41),
                                                    Title = "item title",
                                                    Guid = new RssGuid { IsPermaLink = false, Value = "guid value" },
                                                    Source = new RssSource { Url = new RssUrl("http:https://rss.item.source.url.com") }
                                                }
                                        }
                    }
            };

Get a digital subscription for project news

Subscribe to my Twitter to keep up-to-date with project news and receive announcements.