xwebrss 2.5.0

dotnet add package xwebrss --version 2.5.0
NuGet\Install-Package xwebrss -Version 2.5.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="xwebrss" Version="2.5.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add xwebrss --version 2.5.0
#r "nuget: xwebrss, 2.5.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install xwebrss as a Cake Addin
#addin nuget:?package=xwebrss&version=2.5.0

// Install xwebrss as a Cake Tool
#tool nuget:?package=xwebrss&version=2.5.0

X.Web.RSS

This project you also can download from Nuget.org at http://nuget.org/packages/xwebrss/

W3C Validagtion

RSS feeds which generated by this library successfully pass W3C validation. You can test your RSS feeds at http://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 RSSHelper.ReadRSS

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

RSS object creating example

Complete rss object will looks like this:

return new RssDocument
        {
            Channel =
                new RssChannel
                {
                    AtomLink = new RssLink { Href = new RssUrl("http://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://image.link.url.com"),
                            Title = "title",
                            Url = new RssUrl("http://image.url.com")
                        },
                    Language = new CultureInfo("en"),
                    LastBuildDate = new DateTime(2011, 7, 17, 15, 55, 41),
                    Link = new RssUrl("http://channel.url.com"),
                    ManagingEditor = new RssEmail("managingEditor@mail.com (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://text.input.link.com"),
                            Name = "text input name",
                            Title = "text input title"
                        },
                    Title = "channel title",
                    TTL = 10,
                    WebMaster = new RssEmail("webmaster@mail.example.com (webmaster)"),
                    Items =
                        new List<RssItem>
                                    {
                                        new RssItem
                                            {
                                                Author = new RssEmail("item.author@mail.example.com (author)"),
                                                Category =
                                                    new RssCategory
                                                        {
                                                            Domain = "category domain value", 
                                                            Text = "category text value"
                                                        },
                                                Comments = new RssUrl("http://rss.item.comment.url.com"),
                                                Description = "item description",
                                                Enclosure =
                                                    new RssEnclosure
                                                        {
                                                            Length = 1234,
                                                            Type = "text/plain",
                                                            Url = new RssUrl("http://rss.item.enclosure.type.url.com")
                                                        },
                                                Link = new RssUrl("http://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://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.

Twitter URL

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on xwebrss:

Package Downloads
EclassApi

An Eclass Mobile API Client for C#

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.5.0 756 3/5/2023
2.4.0 654 9/3/2022
2.2.0 4,260 12/9/2017
2.1.0 2,440 8/24/2017
2.0.0 1,404 4/30/2017
1.2.1.130 2,067 3/25/2014
1.2.0.125 1,222 2/5/2014
1.1.0.1 1,588 6/11/2013
1.1.0 1,226 3/25/2013