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

Skip to main content Skip to navigation

BreadcrumbItem Pennington.Navigation

One segment in a page's breadcrumb trail.

Properties

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

Constructors

.ctor

#
public record 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 record BreadcrumbItem(string Title, ContentRoute? Route);
/// Route the segment links to, or null for a non-linked label.
ContentRoute? Route
; /// Display title for the segment.
string Title
; }