Una mejor manera de manejar esto a partir de ahora (1.1) es hacer esto en Startup.cs
's Configure()
:
app.UseExceptionHandler("/Error");
Esto ejecutará la ruta para /Error
. Esto le ahorrará agregar bloques try-catch a cada acción que escriba.
Por supuesto, deberá agregar un ErrorController similar a este:
[Route("[controller]")]
public class ErrorController : Controller
{
[Route("")]
[AllowAnonymous]
public IActionResult Get()
{
return StatusCode(StatusCodes.Status500InternalServerError);
}
}
Más información aquí .
En caso de que desee obtener los datos de excepción reales, puede agregar esto a lo anterior Get()
justo antes de la return
declaración.
// 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
}
Fragmento anterior tomado del blog de Scott Sauber .