Skip to content

Instantly share code, notes, and snippets.

@CoreProgramm
Last active April 29, 2020 18:40
Show Gist options
  • Save CoreProgramm/47b6bf962d1280979c07e35777815605 to your computer and use it in GitHub Desktop.
Save CoreProgramm/47b6bf962d1280979c07e35777815605 to your computer and use it in GitHub Desktop.
ASP .NET Core Developer Exception Page
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
if (env.IsDevelopment())
{
DeveloperExceptionPageOptions developerExceptionPageOptions =
new DeveloperExceptionPageOptions
{
SourceCodeLineCount = 5
};
app.UseDeveloperExceptionPage(developerExceptionPageOptions);
}
app.UseRouting();
app.UseEndpoints(endpoints =>
{
endpoints.MapGet("/", async context =>
{
throw new Exception("Error Occurred while processing your request");
await context.Response.WriteAsync("Hello World!");
});
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment