4 writes to Exception
Microsoft.AspNetCore.Mvc.Core.TestCommon (4)
CommonResourceInvokerTest.cs (4)
174context.Exception = null; 207context.Exception = null; 306context.Exception = null; 340context.Exception = null;
11 references to Exception
Microsoft.AspNetCore.Mvc.Abstractions (2)
Filters\ExceptionContext.cs (2)
53/// <see cref="Exception"/>, if this information was captured. 70/// Gets or sets an indication that the <see cref="Exception"/> has been handled.
Microsoft.AspNetCore.Mvc.Core (7)
Infrastructure\ResourceInvoker.cs (7)
673if (exceptionContext?.Exception != null && !exceptionContext.ExceptionHandled) 708if (exceptionContext.Exception == null || exceptionContext.ExceptionHandled) 740if (exceptionContext?.Exception != null && !exceptionContext.ExceptionHandled) 756if (exceptionContext.Exception == null || exceptionContext.ExceptionHandled) 815exceptionContext.Exception == null || 1476if (context.Exception != null) 1478throw context.Exception;
Microsoft.AspNetCore.Mvc.Core.TestCommon (2)
CommonResourceInvokerTest.cs (2)
95exception = context.Exception; 138exception = context.Exception;