1 implementation of IExceptionHandlerPathFeature
Microsoft.AspNetCore.Diagnostics (1)
ExceptionHandler\ExceptionHandlerFeature.cs (1)
12public class ExceptionHandlerFeature : IExceptionHandlerPathFeature
6 references to IExceptionHandlerPathFeature
Microsoft.AspNetCore.Diagnostics (2)
DeveloperExceptionPage\DeveloperExceptionPageMiddlewareImpl.cs (1)
97httpContext.Features.Set<IExceptionHandlerPathFeature>(exceptionHandlerFeature);
ExceptionHandler\ExceptionHandlerMiddlewareImpl.cs (1)
167context.Features.Set<IExceptionHandlerPathFeature>(exceptionHandlerFeature);
Microsoft.AspNetCore.Diagnostics.Tests (4)
DeveloperExceptionPageMiddlewareTest.cs (2)
145var feature = context.HttpContext.Features.Get<IExceptionHandlerPathFeature>();
ExceptionHandlerMiddlewareTest.cs (2)
113var feature = context.Features.Get<IExceptionHandlerPathFeature>();