This site provides a machine-readable index at /llms.txt.

Skip to main content Skip to navigation

RssFeedItem Pennington.Feeds

Single entry in a generated RSS feed.

Properties

Author string?
Default: null
Optional author name or email.
Description string?
Default: null
Optional summary or excerpt.
PublishDate System.DateTime?
Default: null
Publication date, when known.
Title string
Item title shown in the feed.
Url Pennington.Routing.UrlPath
Absolute URL the entry links to.

Constructors

.ctor

#
public record RssFeedItem(
    string Title,
    string? Description,
    UrlPath Url,
    DateTime? PublishDate,
    string? Author
);

Single entry in a generated RSS feed.

Parameters

Title string
Item title shown in the feed.
Description string?
Optional summary or excerpt.
Url UrlPath
Absolute URL the entry links to.
PublishDate DateTime?
Publication date, when known.
Author string?
Optional author name or email.

Pennington.Feeds.RssFeedItem

namespace Pennington.Feeds;

/// Single entry in a generated RSS feed.
public record RssFeedItem
{
    /// Single entry in a generated RSS feed.
    
public record RssFeedItem(
    string Title,
    string? Description,
    UrlPath Url,
    DateTime? PublishDate,
    string? Author
);
/// Optional author name or email.
string? Author
; /// Optional summary or excerpt.
string? Description
; /// Publication date, when known.
DateTime? PublishDate
; /// Item title shown in the feed.
string Title
; /// Absolute URL the entry links to.
UrlPath Url
; }