Şimdilik bunu (1.1) daha iyi ele almanın daha iyi bir yolu, bunu Startup.cs
's Configure()
:
app.UseExceptionHandler("/Error");
Bu işlem için rotayı yürütür /Error
. Bu, yazdığınız her eyleme try-catch blokları eklemekten kurtaracaktır.
Elbette, buna benzer bir ErrorController eklemeniz gerekir:
[Route("[controller]")]
public class ErrorController : Controller
{
[Route("")]
[AllowAnonymous]
public IActionResult Get()
{
return StatusCode(StatusCodes.Status500InternalServerError);
}
}
Daha fazla bilgi burada .
Gerçek istisna verilerini almak istiyorsanız, bunu ifadeden Get()
hemen önce yukarıdakilere ekleyebilirsiniz 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
}
Snippet'in üstü Scott Sauber blogundan alındı .