今のところ、これを処理するためのより良い方法(1.1)でこれを行うことですStartup.cs
さん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
}
スコットザウバーのブログから抜粋した上記の抜粋。