FailedItem Pennington.Pipeline
A content item that failed during parsing or rendering.
Properties
ErrorContentError- Error describing the failure.
RouteContentRoute- 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
RouteContentRoute- Canonical route for the item that failed.
ErrorContentError- 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; }
}