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

Skip to main content Skip to navigation

BrokenLinkResult Pennington.Infrastructure

A link that failed verification.

Properties

Reason string
Human-readable reason the link is considered broken.
SourcePage Pennington.Routing.ContentRoute
Page that contained the link.
Type Pennington.Generation.LinkType
Classification of the broken link.
Url string
Link target URL.

Constructors

.ctor

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

A link that failed verification.

Parameters

SourcePage ContentRoute
Page that contained the link.
Url string
Link target URL.
Type LinkType
Classification of the broken link.
Reason string
Human-readable reason the link is considered broken.

Pennington.Infrastructure.BrokenLinkResult

namespace Pennington.Infrastructure;

/// A link that failed verification.
public record BrokenLinkResult
{
    /// A link that failed verification.
    
public record BrokenLinkResult(ContentRoute SourcePage, string Url, LinkType Type, string Reason);
/// Human-readable reason the link is considered broken.
string Reason
; /// Page that contained the link.
ContentRoute SourcePage
; /// Classification of the broken link.
LinkType Type
; /// Link target URL.
string Url
; }