Лучший способ справиться с этим , как сейчас (1.1) , чтобы сделать это в Startup.cs
«s Configure()
:
app.UseExceptionHandler("/Error");
Это выполнит маршрут для /Error
. Это избавит вас от добавления блоков try-catch к каждому написанному вами действию.
Конечно, вам нужно добавить 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
}
Выше фрагмент взят из блога Скотта Саубера .