This documentation is also published as Markdown for efficient machine reading: the whole site is indexed at /llms.txt, and every page has a clean Markdown copy at the same URL with .md appended. These are generated from the same source and cost far fewer tokens to read than this rendered HTML.

Skip to main content Skip to navigation

Tag Pennington.Pipeline

A content tag with a display name and URL-safe slug.

Properties

Name string
Human-readable tag name.
Slug string
URL-safe slug used in tag routes.

Constructors

Tag

#
public Tag(string Name, string Slug)

A content tag with a display name and URL-safe slug.

Parameters

Name string
Human-readable tag name.
Slug string
URL-safe slug used in tag routes.

Pennington.Pipeline.Tag

namespace Pennington.Pipeline;

/// A content tag with a display name and URL-safe slug.
public record Tag
{
    /// Human-readable tag name.
    
public string Name { get; set; }
/// URL-safe slug used in tag routes.
public string Slug { get; set; }
/// A content tag with a display name and URL-safe slug.
public Tag(string Name, string Slug)
; }