Кращий спосіб справитися з цим , як зараз (1.1) , щоб зробити це в Startup.cs
«s Configure()
:
app.UseExceptionHandler("/Error");
Це виконає маршрут для /Error
. Це вбереже вас від додавання пробних блоків до кожної дії, яку ви пишете.
Звичайно, вам потрібно буде додати ErrorController, подібний до цього:
[Route("[controller]")]
public class ErrorController : Controller
{
[Route("")]
[AllowAnonymous]
public IActionResult Get()
{
return StatusCode(StatusCodes.Status500InternalServerError);
}
}
Більше інформації тут .
Якщо ви хочете отримати фактичні дані про виключення, ви можете додати це до вищевказаного Get()
справа перед return
заявою.
// Get the details of the exception that occurred
var exceptionFeature = HttpContext.Features.Get<IExceptionHandlerPathFeature>();
if (exceptionFeature != null)
{
// Get which route the exception occurred at
string routeWhereExceptionOccurred = exceptionFeature.Path;
// Get the exception that occurred
Exception exceptionThatOccurred = exceptionFeature.Error;
// TODO: Do something with the exception
// Log it with Serilog?
// Send an e-mail, text, fax, or carrier pidgeon? Maybe all of the above?
// Whatever you do, be careful to catch any exceptions, otherwise you'll end up with a blank page and throwing a 500
}
Вище фрагмент, зроблений із блогу Скотта Соубера .