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

ValidLink Pennington.Infrastructure

A link that resolved to a known internal target.

Properties

SourcePage ContentRoute
Page that contained the link.
Url string
Link target URL.

Constructors

#
public ValidLink(ContentRoute SourcePage, string Url)

A link that resolved to a known internal target.

Parameters

SourcePage ContentRoute
Page that contained the link.
Url string
Link target URL.

Pennington.Infrastructure.ValidLink

namespace Pennington.Infrastructure;

/// A link that resolved to a known internal target.
public record ValidLink
{
    /// Page that contained the link.
    
public ContentRoute SourcePage { get; set; }
/// Link target URL.
public string Url { get; set; }
/// A link that resolved to a known internal target.
public ValidLink(ContentRoute SourcePage, string Url)
; }