3 writes to ExceptionDispatchInfo
Microsoft.AspNetCore.Mvc.Core (2)
Infrastructure\ResourceInvoker.cs (2)
967ExceptionDispatchInfo = ExceptionDispatchInfo.Capture(exception), 989ExceptionDispatchInfo = ExceptionDispatchInfo.Capture(exception),
Microsoft.AspNetCore.Mvc.Core.Test (1)
Filters\MiddlewareFilterBuilderTest.cs (1)
265ExceptionDispatchInfo = exceptionInfo,
15 references to ExceptionDispatchInfo
Microsoft.AspNetCore.Mvc.Abstractions (2)
Filters\ResourceExecutedContext.cs (2)
38/// Setting <see cref="Exception"/> or <see cref="ExceptionDispatchInfo"/> to <c>null</c> will treat 71/// Setting <see cref="Exception"/> or <see cref="ExceptionDispatchInfo"/> to <c>null</c> will treat
Microsoft.AspNetCore.Mvc.Core (2)
Filters\MiddlewareFilterBuilder.cs (1)
78resourceExecutedContext.ExceptionDispatchInfo?.Throw();
Infrastructure\ResourceInvoker.cs (1)
1454context.ExceptionDispatchInfo?.Throw();
Microsoft.AspNetCore.Mvc.Core.Test (2)
Infrastructure\ControllerActionInvokerTest.cs (2)
758Assert.Same(expected, context.ExceptionDispatchInfo.SourceException); 797Assert.Same(expected, context.ExceptionDispatchInfo.SourceException);
Microsoft.AspNetCore.Mvc.Core.TestCommon (7)
CommonResourceInvokerTest.cs (7)
1268Assert.Null(context.ExceptionDispatchInfo); 1334Assert.Same(Exception, context.ExceptionDispatchInfo.SourceException); 1373Assert.Same(expected, context.ExceptionDispatchInfo.SourceException); 1393Assert.Same(Exception, context.ExceptionDispatchInfo.SourceException); 1443Assert.Same(expected, context.ExceptionDispatchInfo.SourceException); 1479Assert.Same(expected, context.ExceptionDispatchInfo.SourceException); 1515Assert.Same(expected, context.ExceptionDispatchInfo.SourceException);
Microsoft.AspNetCore.Mvc.RazorPages.Test (2)
Infrastructure\PageActionInvokerTest.cs (2)
1288Assert.Same(expected, context.ExceptionDispatchInfo.SourceException); 1327Assert.Same(expected, context.ExceptionDispatchInfo.SourceException);