private WebHostUnhandledExceptionArgs OnUnhandledException(WebHostUnhandledExceptionArgs args) { UnhandledException?.Invoke(this, args); return(args); }
private IHttpActionResult ByEvent(ExceptionHandlerContext context) { WebHostUnhandledExceptionArgs args = OnUnhandledException(new WebHostUnhandledExceptionArgs(context)); return(args.Result); }