SitemapEntry Pennington.Feeds
Single <url> row written to sitemap.xml.
Properties
LastModifiedDateTime?- Last-modified timestamp, when available.
UrlUrlPath- Absolute URL for this sitemap entry.
Constructors
SitemapEntry
#public SitemapEntry(UrlPath Url, DateTime? LastModified)
Single <url> row written to sitemap.xml.
Parameters
UrlUrlPath- Absolute URL for this sitemap entry.
LastModifiedDateTime?- Last-modified timestamp, when available.
Pennington.Feeds.SitemapEntry
namespace Pennington.Feeds;
/// Single <url> row written to sitemap.xml.
public record SitemapEntry
{
/// Last-modified timestamp, when available.
public DateTime? LastModified { get; set; }
/// Single <url> row written to sitemap.xml.
public SitemapEntry(UrlPath Url, DateTime? LastModified)
;
/// Absolute URL for this sitemap entry.
public UrlPath Url { get; set; }
}