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 under /_llms/. 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

BreadcrumbItem Pennington.Navigation

One segment in a page's breadcrumb trail.

Properties

Route ContentRoute
Route the segment links to, or null for a non-linked label.
Title string
Display title for the segment.

Constructors

BreadcrumbItem

#
public BreadcrumbItem(string Title, ContentRoute Route)

One segment in a page's breadcrumb trail.

Parameters

Title string
Display title for the segment.
Route ContentRoute
Route the segment links to, or null for a non-linked label.

Pennington.Navigation.BreadcrumbItem

namespace Pennington.Navigation;

/// One segment in a page's breadcrumb trail.
public record BreadcrumbItem
{
    /// One segment in a page's breadcrumb trail.
    
public BreadcrumbItem(string Title, ContentRoute Route)
; /// Route the segment links to, or null for a non-linked label.
public ContentRoute Route { get; set; }
/// Display title for the segment.
public string Title { get; set; }
}