diff options
Diffstat (limited to 'src/DevHive.Blazor/Pages/Error.cshtml.cs')
| -rw-r--r-- | src/DevHive.Blazor/Pages/Error.cshtml.cs | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/DevHive.Blazor/Pages/Error.cshtml.cs b/src/DevHive.Blazor/Pages/Error.cshtml.cs new file mode 100644 index 0000000..b18c4a6 --- /dev/null +++ b/src/DevHive.Blazor/Pages/Error.cshtml.cs @@ -0,0 +1,32 @@ +using System;
+using System.Collections.Generic;
+using System.Diagnostics;
+using System.Linq;
+using System.Threading.Tasks;
+using Microsoft.AspNetCore.Mvc;
+using Microsoft.AspNetCore.Mvc.RazorPages;
+using Microsoft.Extensions.Logging;
+
+namespace DevHive.Blazor.Pages
+{
+ [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
+ [IgnoreAntiforgeryToken]
+ public class ErrorModel : PageModel
+ {
+ public string RequestId { get; set; }
+
+ public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
+
+ private readonly ILogger<ErrorModel> _logger;
+
+ public ErrorModel(ILogger<ErrorModel> logger)
+ {
+ _logger = logger;
+ }
+
+ public void OnGet()
+ {
+ RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier;
+ }
+ }
+}
|
