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

Skip to main content Skip to navigation

BrokenLink Pennington.Generation

Record of a link that failed verification during build.

Properties

Reason string
Human-readable reason the link failed verification.
SourcePage Pennington.Routing.ContentRoute
Route of the page that contained the broken link.
Type Pennington.Generation.LinkType
Kind of link (internal, external, anchor, image).
Url string
Target URL that could not be resolved.

Constructors

#
public record BrokenLink(ContentRoute SourcePage, string Url, LinkType Type, string Reason);

Record of a link that failed verification during build.

Parameters

SourcePage ContentRoute
Route of the page that contained the broken link.
Url string
Target URL that could not be resolved.
Type LinkType
Kind of link (internal, external, anchor, image).
Reason string
Human-readable reason the link failed verification.

Pennington.Generation.BrokenLink

namespace Pennington.Generation;

/// Record of a link that failed verification during build.
public record BrokenLink
{
    /// Record of a link that failed verification during build.
    
public record BrokenLink(ContentRoute SourcePage, string Url, LinkType Type, string Reason);
/// Human-readable reason the link failed verification.
string Reason
; /// Route of the page that contained the broken link.
ContentRoute SourcePage
; /// Kind of link (internal, external, anchor, image).
LinkType Type
; /// Target URL that could not be resolved.
string Url
; }