rtmpdash/Pages/Error.cshtml.cs

16 lines
476 B
C#
Raw Permalink Normal View History

2021-01-24 04:04:16 +01:00
using System.Diagnostics;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
2022-02-09 22:32:17 +01:00
namespace RTMPDash.Pages;
2021-01-24 04:04:16 +01:00
2022-02-09 22:32:17 +01:00
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true), IgnoreAntiforgeryToken]
public class ErrorModel : PageModel {
public string RequestId { get; set; }
2021-01-24 04:04:16 +01:00
2022-02-09 22:32:17 +01:00
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
public void OnGet() {
RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier;
2021-01-24 04:04:16 +01:00
}
}