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 at the same URL with .md appended. 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

FailedItem Pennington.Pipeline

A content item that failed during parsing or rendering.

Properties

Error ContentError
Error describing the failure.
Route ContentRoute
Canonical route for the item that failed.

Constructors

FailedItem

#
public FailedItem(ContentRoute Route, ContentError Error)

A content item that failed during parsing or rendering.

Parameters

Route ContentRoute
Canonical route for the item that failed.
Error ContentError
Error describing the failure.

Pennington.Pipeline.FailedItem

namespace Pennington.Pipeline;

/// A content item that failed during parsing or rendering.
public record FailedItem
{
    /// Error describing the failure.
    
public ContentError Error { get; set; }
/// A content item that failed during parsing or rendering.
public FailedItem(ContentRoute Route, ContentError Error)
; /// Canonical route for the item that failed.
public ContentRoute Route { get; set; }
}