15 references to ExceptionResult
Microsoft.AspNetCore.Diagnostics (15)
DeveloperExceptionPage\DeveloperExceptionPageMiddlewareImpl.cs (4)
123
_metrics.RequestException(exceptionName,
ExceptionResult
.Aborted, handler: null);
143
_metrics.RequestException(exceptionName,
ExceptionResult
.Skipped, handler: null);
171
_metrics.RequestException(exceptionName,
ExceptionResult
.Unhandled, handler: null);
183
_metrics.RequestException(exceptionName,
ExceptionResult
.Unhandled, handler: null);
DiagnosticsMetrics.cs (7)
30
public void RequestException(string exceptionName,
ExceptionResult
result, string? handler)
39
private void RequestExceptionCore(string exceptionName,
ExceptionResult
result, string? handler)
51
private static string GetExceptionResult(
ExceptionResult
result)
55
case
ExceptionResult
.Skipped:
57
case
ExceptionResult
.Handled:
59
case
ExceptionResult
.Unhandled:
61
case
ExceptionResult
.Aborted:
ExceptionHandler\ExceptionHandlerMiddlewareImpl.cs (4)
126
_metrics.RequestException(exceptionName,
ExceptionResult
.Aborted, handler: null);
137
_metrics.RequestException(exceptionName,
ExceptionResult
.Skipped, handler: null);
213
_metrics.RequestException(exceptionName,
ExceptionResult
.Handled, handler);
235
_metrics.RequestException(exceptionName,
ExceptionResult
.Unhandled, handler: null);