System.ServiceModel.Syndication 9.0.0-preview.1.24080.9

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
This is a prerelease version of System.ServiceModel.Syndication.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package System.ServiceModel.Syndication --version 9.0.0-preview.1.24080.9
NuGet\Install-Package System.ServiceModel.Syndication -Version 9.0.0-preview.1.24080.9
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="System.ServiceModel.Syndication" Version="9.0.0-preview.1.24080.9" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add System.ServiceModel.Syndication --version 9.0.0-preview.1.24080.9
#r "nuget: System.ServiceModel.Syndication, 9.0.0-preview.1.24080.9"
#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 System.ServiceModel.Syndication as a Cake Addin
#addin nuget:?package=System.ServiceModel.Syndication&version=9.0.0-preview.1.24080.9&prerelease

// Install System.ServiceModel.Syndication as a Cake Tool
#tool nuget:?package=System.ServiceModel.Syndication&version=9.0.0-preview.1.24080.9&prerelease

About

Provides types for generating and consuming RSS and Atom feeds. It is used for creating and parsing syndication feeds, making it easier to build and integrate web content syndication.

Key Features

  • Easy generation and parsing of RSS and Atom feeds.
  • Customizable for different syndication needs.
  • Support for both feed reading and writing.

How to Use

Creating a Feed

using System.ServiceModel.Syndication;
using System.Xml;

// Create a new syndication feed
SyndicationFeed feed = new SyndicationFeed(
    "Feed Title",
    "Feed Description",
    new Uri("http://example.com"),
    "FeedID",
    DateTime.Now);

// Add items to the feed
SyndicationItem item1 = new SyndicationItem(
    "Title1",
    "Content1",
    new Uri("http://example.com/item1"));
feed.Items = new List<SyndicationItem> { item1 };

// Serialize the feed to RSS format
using (XmlWriter writer = XmlWriter.Create("rss.xml"))
{
    Rss20FeedFormatter rssFormatter = new Rss20FeedFormatter(feed);
    rssFormatter.WriteTo(writer);
}

Resulting RSS feed:

<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:a10="http://www.w3.org/2005/Atom" version="2.0">
    <channel>
        <title>Feed Title</title>
        <link>http://example.com/</link>
        <description>Feed Description</description>
        <lastBuildDate>Sat, 11 Nov 2023 18:05:21 +0100</lastBuildDate>
        <a10:id>FeedID</a10:id>
        <item>
            <link>http://example.com/item1</link>
            <title>Title1</title>
            <description>Content1</description>
        </item>
    </channel>
</rss>

Consuming a Feed

using System.ServiceModel.Syndication;
using System.Xml;

string feedUrl = "https://devblogs.microsoft.com/dotnet/feed/";
using XmlReader reader = XmlReader.Create(feedUrl);

// Read the feed using Atom10FeedFormatter.
SyndicationFeed feed = SyndicationFeed.Load(reader);

Console.WriteLine($"Feed Title: {feed.Title.Text}");
Console.WriteLine("Feed Items:");

// Iterate through the feed items and display the title and a brief summary of each.
foreach (SyndicationItem item in feed.Items)
{
    Console.WriteLine($"Title: {item.Title.Text}");
    Console.WriteLine($"Published Date: {item.PublishDate.DateTime}");
}

/*
 * This code produces the following output:
 *
 * Feed Title: .NET Blog
 * Feed Items:
 * - Title: Join us for the Great .NET 8 Hack
 *   Published Date: 07/11/2023 18:05:00
 * - Title: The convenience of System.IO
 *   Published Date: 06/11/2023 18:05:00
 */

Main Types

The main types provided by this library are:

  • System.ServiceModel.Syndication.SyndicationFeed
  • System.ServiceModel.Syndication.SyndicationItem
  • System.ServiceModel.Syndication.Rss20FeedFormatter
  • System.ServiceModel.Syndication.Atom10FeedFormatter

Additional Documentation

Feedback & Contributing

System.ServiceModel.Syndication is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 was computed.  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 is compatible.  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.  net9.0 is compatible. 
.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 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  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.
  • .NETFramework 4.6.2

    • No dependencies.
  • .NETStandard 2.0

    • No dependencies.
  • net8.0

    • No dependencies.
  • net9.0

    • No dependencies.

NuGet packages (47)

Showing the top 5 NuGet packages that depend on System.ServiceModel.Syndication:

Package Downloads
Microsoft.Windows.Compatibility The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

This Windows Compatibility Pack provides access to APIs that were previously available only for .NET Framework. It can be used from both .NET as well as .NET Standard.

Kentico.Xperience.Libraries The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

The runtime assemblies for libraries and applications that use Kentico Xperience API.

Dapplo.HttpExtensions The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

A library extensions to simplify HTTP usage.

Indice.AspNetCore.Identity

Package Description

StockSharp.Rss The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

RSS

GitHub repositories (21)

Showing the top 5 popular GitHub repositories that depend on System.ServiceModel.Syndication:

Repository Stars
dodyg/practical-aspnetcore
Practical samples of ASP.NET Core 8.0, 7.0, 6.0, 5.0, 3.1, 2.2, and 2.1,projects you can use. Readme contains explanations on all projects.
Prowlarr/Prowlarr
microsoft/dotnet-podcasts
.NET reference application shown at .NET Conf featuring ASP.NET Core, Blazor, .NET MAUI, Microservices, Orleans, Playwright, and more!
ariacom/Seal-Report
Database Reporting Tool and Tasks (.Net)
blogifierdotnet/Blogifier
Blogifier is an open-source publishing platform Written in ASP.NET and Blazor WebAssembly. With Blogifier make a personal blog or a website.
Version Downloads Last updated
9.0.0-preview.3.24172.9 422 4/11/2024
9.0.0-preview.2.24128.5 772 3/12/2024
9.0.0-preview.1.24080.9 6,514 2/13/2024
8.0.0 1,130,136 11/14/2023
8.0.0-rc.2.23479.6 13,974 10/10/2023
8.0.0-rc.1.23419.4 11,675 9/12/2023
8.0.0-preview.7.23375.6 10,784 8/8/2023
8.0.0-preview.6.23329.7 1,562 7/11/2023
8.0.0-preview.5.23280.8 1,490 6/13/2023
8.0.0-preview.4.23259.5 10,686 5/16/2023
8.0.0-preview.3.23174.8 19,369 4/11/2023
8.0.0-preview.2.23128.3 6,312 3/14/2023
8.0.0-preview.1.23110.8 8,111 2/21/2023
7.0.0 3,747,451 11/7/2022
7.0.0-rc.2.22472.3 9,834 10/11/2022
7.0.0-rc.1.22426.10 62,003 9/14/2022
7.0.0-preview.7.22375.6 10,283 8/9/2022
7.0.0-preview.6.22324.4 1,077 7/12/2022
7.0.0-preview.5.22301.12 1,163 6/14/2022
7.0.0-preview.4.22229.4 52,885 5/10/2022
7.0.0-preview.3.22175.4 3,481 4/13/2022
7.0.0-preview.2.22152.2 11,643 3/14/2022
7.0.0-preview.1.22076.8 2,776 2/17/2022
6.0.2-mauipre.1.22102.15 1,468 2/15/2022
6.0.2-mauipre.1.22054.8 5,173 1/19/2022
6.0.0 9,764,203 11/8/2021
6.0.0-rc.2.21480.5 8,218 10/12/2021
6.0.0-rc.1.21451.13 8,452 9/14/2021
6.0.0-preview.7.21377.19 2,887 8/10/2021
6.0.0-preview.6.21352.12 1,885 7/14/2021
6.0.0-preview.5.21301.5 5,581 6/15/2021
6.0.0-preview.4.21253.7 23,666 5/24/2021
6.0.0-preview.3.21201.4 7,940 4/8/2021
6.0.0-preview.2.21154.6 8,337 3/11/2021
6.0.0-preview.1.21102.12 2,842 2/12/2021
5.0.0 20,976,137 11/9/2020
5.0.0-rc.2.20475.5 9,186 10/13/2020
5.0.0-rc.1.20451.14 7,252 9/14/2020
5.0.0-preview.8.20407.11 7,253 8/25/2020
5.0.0-preview.7.20364.11 21,674 7/21/2020
5.0.0-preview.6.20305.6 3,871 6/25/2020
5.0.0-preview.5.20278.1 4,141 6/10/2020
5.0.0-preview.4.20251.6 7,596 5/18/2020
5.0.0-preview.3.20214.6 27,203 4/23/2020
5.0.0-preview.2.20160.6 15,866 4/2/2020
5.0.0-preview.1.20120.5 1,179 3/16/2020
4.7.0 7,546,581 12/3/2019
4.7.0-preview3.19551.4 2,044 11/13/2019
4.7.0-preview2.19523.17 12,349 11/1/2019
4.7.0-preview1.19504.10 9,578 10/15/2019
4.6.0 2,020,146 9/23/2019
4.6.0-rc1.19456.4 4,576 9/16/2019
4.6.0-preview9.19421.4 3,141 9/4/2019
4.6.0-preview9.19416.11 414 9/4/2019
4.6.0-preview8.19405.3 5,334 8/13/2019
4.6.0-preview7.19362.9 7,699 7/23/2019
4.6.0-preview6.19303.8 41,297 6/12/2019
4.6.0-preview6.19264.9 421 9/4/2019
4.6.0-preview5.19224.8 25,523 5/6/2019
4.6.0-preview4.19212.13 1,583 4/18/2019
4.6.0-preview3.19128.7 7,738 3/6/2019
4.6.0-preview.19073.11 13,227 1/29/2019
4.6.0-preview.18571.3 16,792 12/3/2018
4.5.0 10,218,952 5/29/2018
4.5.0-rc1 43,127 5/6/2018
4.5.0-preview2-26406-04 15,978 4/10/2018
4.5.0-preview1-26216-02 30,141 2/26/2018
4.5.0-preview1-25914-04 291,991 11/15/2017