小可爱

.net core异常过滤器

电脑版发表于:2020/12/9 10:33

.net core异常过滤器的基本用法

    public class ExceptionFilter : IExceptionFilter
    {
        public void OnException(ExceptionContext context)
        {
            //请将 ExceptionHandled 属性设置为 true,或编写响应。 这将停止传播异常
            context.ExceptionHandled = true;
            //获取异常信息
            string message = context.Exception.Message;
            //获取获取发送的页面
            string page = context.HttpContext.Request.Path;
        }
    }


关于TNBLOG
TNBLOG,技术分享。技术交流:群号677373950
ICP备案 :渝ICP备18016597号-1
App store Android
精彩评论
{{item.replyName}}
{{item.content}}
{{item.time}}
{{subpj.replyName}}
@{{subpj.beReplyName}}{{subpj.content}}
{{subpj.time}}
猜你喜欢