@page "/Error" @using System.Diagnostics @inject NavigationManager Navigation System Exception | Midrand Books
System Exception // Critical Halt

An unexpected
interruption.

We are experiencing a technical disruption in our processing stream. Our team has been notified of this structural anomaly.

@if (ShowRequestId) {

Ref: @RequestId

}
@code { [CascadingParameter] private HttpContext? HttpContext { get; set; } private string? RequestId { get; set; } private bool ShowRequestId => !string.IsNullOrEmpty(RequestId); protected override void OnInitialized() => RequestId = Activity.Current?.Id ?? HttpContext?.TraceIdentifier; }