FailedItem Pennington.Pipeline
A content item that failed during parsing or rendering.
Properties
ErrorPennington.Pipeline.ContentError- Error describing the failure.
RoutePennington.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
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
{
/// 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
;
}