dng.Syndication

A simple feed generator which can be used to create valid RSS 2.0, Atom and Podcast feeds.


Keywords
RSS, Atom, Podcast, Feeds, feed, syndication
License
MIT
Install
Install-Package dng.Syndication -Version 1.6.3.2

Documentation

Build status Build status NuGet MIT License

dng.Syndication

A feed generator which can be used to create valid RSS 2.0 (spec) and Atom(spec) syndication feeds. It is written in C# and available as ([NuGet-Package]https://www.nuget.org/packages/dng.Syndication/).

How to use

Objects and Fields description for RSS and Atom

Feed

This is the main object which description the general information about the feed.

Field RSS 2.0 ATOM Description
Title title (*) title The name for the feed.
Author author author The author element is used to specify the e-mail address of the author of an item.
Link link (*) id Defines the hyperlink to the channel
FeedEntries item entry Each element defines an article or "story" in an RSS feed.
Language language - Specifies the language the feed is written in
Copyright copyright rights -
Published pubDate published Defines the publication date for the feed
UpdatedDate lastBuildDate updated Defines the last-modified date of the content of the feed.
Generator generator generator The program used to generate the feed
Description description (*) subtitle Describes the feed
  • required

Author

Field RSS 2.0 Atom
name author name
email RFC 2822 emailauthor email

FeedEntry

Field RSS 2.0 Atom Description
Title title (*) title Title of the item.
Link link (*) link The hyperlink to the item.
Summary - summary
Content description (*) content Content the item.
Author author author Author is used to specify the e-mail address of the author of an item.
PublishDate pubDate published Last publication date for the item.
Updated - updated Defines the last-modified date of the content of the feed.
Enclosure enclosure -

Objects and Fields description for Podcast RSS Feeds

iTunes googleplay

Channel

t.b.d.

Episode

t.b.d.

ToDo

  • Redesign of Tests (Conecpt)
  • Documentation
  • Code Samples and Demo Application
  • Validation of input parameter e.g. required fields, lenght,..