IExceptionHandler 接口

定义

表示用于处理 ASP.NET Core应用程序中异常的接口。 IExceptionHandler 实现由异常处理程序中间件使用。

public interface IExceptionHandler
type IExceptionHandler = interface
Public Interface IExceptionHandler

方法

TryHandleAsync(HttpContext, Exception, CancellationToken)

尝试在 ASP.NET Core管道中异步处理指定的异常。 此方法的实现可以为不同的方案提供自定义异常处理逻辑。

适用于