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

Skip to main content Skip to navigation

FailedItem Pennington.Pipeline

A content item that failed during parsing or rendering.

Properties

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

Constructors

.ctor

#
public record 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
{
    /// A content item that failed during parsing or rendering.
    
public record FailedItem(ContentRoute Route, ContentError Error);
/// Error describing the failure.
ContentError Error
; /// Canonical route for the item that failed.
ContentRoute Route
; }