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

ExternalLink Pennington.Infrastructure

A link that points to an external origin and was not verified by the internal checker.

Properties

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

Constructors

#
public ExternalLink(ContentRoute SourcePage, string Url)

A link that points to an external origin and was not verified by the internal checker.

Parameters

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

Pennington.Infrastructure.ExternalLink

namespace Pennington.Infrastructure;

/// A link that points to an external origin and was not verified by the internal checker.
public record ExternalLink
{
    /// A link that points to an external origin and was not verified by the internal checker.
    
public ExternalLink(ContentRoute SourcePage, string Url)
; /// Page that contained the link.
public ContentRoute SourcePage { get; set; }
/// External target URL.
public string Url { get; set; }
}