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

Skip to main content Skip to navigation

PageDiagnosticsEntry Pennington.Tui

One collected per-page diagnostics snapshot.

Properties

CapturedAt System.DateTimeOffset
When the snapshot was taken (end of that request).
Diagnostics System.Collections.Immutable.ImmutableArray<Pennington.Diagnostics.Diagnostic>
Diagnostics the content pipeline recorded during that request.
Path string
Request path the snapshot belongs to.

Constructors

.ctor

#
public readonly record struct PageDiagnosticsEntry(
    string Path,
    DateTimeOffset CapturedAt,
    ImmutableArray<Diagnostic> Diagnostics);

One collected per-page diagnostics snapshot.

Parameters

Path string
Request path the snapshot belongs to.
CapturedAt DateTimeOffset
When the snapshot was taken (end of that request).
Diagnostics ImmutableArray<Diagnostic>
Diagnostics the content pipeline recorded during that request.

Pennington.Tui.PageDiagnosticsEntry

namespace Pennington.Tui;

/// One collected per-page diagnostics snapshot.
public record PageDiagnosticsEntry
{
    /// One collected per-page diagnostics snapshot.
    
public readonly record struct PageDiagnosticsEntry(
    string Path,
    DateTimeOffset CapturedAt,
    ImmutableArray<Diagnostic> Diagnostics);
/// When the snapshot was taken (end of that request).
DateTimeOffset CapturedAt
; /// Diagnostics the content pipeline recorded during that request.
ImmutableArray<Diagnostic> Diagnostics
; /// Request path the snapshot belongs to.
string Path
; }