1 type derived from ExceptionContext
Microsoft.AspNetCore.Mvc.Core (1)
Infrastructure\ResourceInvoker.cs (1)
1588
private sealed class ExceptionContextSealed :
ExceptionContext
21 references to ExceptionContext
Microsoft.AspNetCore.Mvc.Abstractions (5)
Filters\ExceptionContext.cs (1)
18
/// Instantiates a new <see cref="
ExceptionContext
"/> instance.
Filters\IAsyncExceptionFilter.cs (2)
14
/// <param name="context">The <see cref="
ExceptionContext
"/>.</param>
16
Task OnExceptionAsync(
ExceptionContext
context);
Filters\IExceptionFilter.cs (2)
14
/// <param name="context">The <see cref="
ExceptionContext
"/>.</param>
15
void OnException(
ExceptionContext
context);
Microsoft.AspNetCore.Mvc.Core (16)
Diagnostics\MvcDiagnostics.cs (6)
522
/// An <see cref="EventData"/> that occurs before <see cref="IExceptionFilter.OnException(
ExceptionContext
)"/>.
537
public BeforeExceptionFilterOnException(ActionDescriptor actionDescriptor,
ExceptionContext
exceptionContext, IFilterMetadata filter)
552
public
ExceptionContext
ExceptionContext { get; }
573
/// An <see cref="EventData"/> that occurs after <see cref="IExceptionFilter.OnException(
ExceptionContext
)"/>.
588
public AfterExceptionFilterOnExceptionEventData(ActionDescriptor actionDescriptor,
ExceptionContext
exceptionContext, IFilterMetadata filter)
603
public
ExceptionContext
ExceptionContext { get; }
Filters\ExceptionFilterAttribute.cs (2)
17
public virtual Task OnExceptionAsync(
ExceptionContext
context)
26
public virtual void OnException(
ExceptionContext
context)
MvcCoreDiagnosticListenerExtensions.cs (8)
378
ExceptionContext
exceptionContext,
392
private static void BeforeOnExceptionAsyncImpl(DiagnosticListener diagnosticListener,
ExceptionContext
exceptionContext, IAsyncExceptionFilter filter)
408
ExceptionContext
exceptionContext,
422
private static void AfterOnExceptionAsyncImpl(DiagnosticListener diagnosticListener,
ExceptionContext
exceptionContext, IAsyncExceptionFilter filter)
438
ExceptionContext
exceptionContext,
452
private static void BeforeOnExceptionImpl(DiagnosticListener diagnosticListener,
ExceptionContext
exceptionContext, IExceptionFilter filter)
468
ExceptionContext
exceptionContext,
482
private static void AfterOnExceptionImpl(DiagnosticListener diagnosticListener,
ExceptionContext
exceptionContext, IExceptionFilter filter)