11 references to Exception
Microsoft.AspNetCore.Mvc.Abstractions (6)
Filters\ResourceExecutedContext.cs (6)
34/// Gets or set the current <see cref="Exception"/>. 38/// Setting <see cref="Exception"/> or <see cref="ExceptionDispatchInfo"/> to <c>null</c> will treat 67/// Gets or set the current <see cref="Exception"/>. 71/// Setting <see cref="Exception"/> or <see cref="ExceptionDispatchInfo"/> to <c>null</c> will treat 94/// Gets or sets a value indicating whether or not the current <see cref="Exception"/> has been handled. 97/// If <c>false</c> the <see cref="Exception"/> will be rethrown by the runtime after resource filters
Microsoft.AspNetCore.Mvc.Core (4)
Filters\MiddlewareFilterBuilder.cs (2)
79if (resourceExecutedContext.Exception != null) 83throw resourceExecutedContext.Exception;
Infrastructure\ResourceInvoker.cs (2)
1460if (context.Exception != null) 1462throw context.Exception;
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
Filters\SaveTempDataFilter.cs (1)
84if (!context.HttpContext.Response.HasStarted && context.Exception != null)