1 interface inheriting from IExceptionHandlerFeature
Microsoft.AspNetCore.Diagnostics.Abstractions (1)
IExceptionHandlerPathFeature.cs (1)
9public interface IExceptionHandlerPathFeature : IExceptionHandlerFeature
10 references to IExceptionHandlerFeature
ExceptionHandlerSample (2)
Startup.cs (2)
24var error = context.Features.Get<IExceptionHandlerFeature>();
Microsoft.AspNetCore.Components.Endpoints (3)
RazorComponentEndpointInvoker.cs (2)
39var isErrorHandler = context.Features.Get<IExceptionHandlerFeature>() is not null; 164context.Features.Get<IExceptionHandlerFeature>() == null;
Results\RazorComponentResultExecutor.cs (1)
50var isErrorHandler = httpContext.Features.Get<IExceptionHandlerFeature>() is not null;
Microsoft.AspNetCore.Diagnostics (2)
DeveloperExceptionPage\DeveloperExceptionPageMiddlewareImpl.cs (1)
96httpContext.Features.Set<IExceptionHandlerFeature>(exceptionHandlerFeature);
ExceptionHandler\ExceptionHandlerMiddlewareImpl.cs (1)
166context.Features.Set<IExceptionHandlerFeature>(exceptionHandlerFeature);
Microsoft.AspNetCore.Diagnostics.Abstractions (1)
IExceptionHandlerPathFeature.cs (1)
15new string Path => ((IExceptionHandlerFeature)this).Path;
Microsoft.AspNetCore.Diagnostics.Tests (2)
DeveloperExceptionPageMiddlewareTest.cs (2)
86var feature = context.HttpContext.Features.Get<IExceptionHandlerFeature>();