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/).
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
| Field | RSS 2.0 | Atom |
|---|---|---|
| name | author | name |
| email RFC 2822 | emailauthor |
| 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 | - |
t.b.d.
t.b.d.
- Redesign of Tests (Conecpt)
- Documentation
- Code Samples and Demo Application
- Validation of input parameter e.g. required fields, lenght,..