// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.AspNet.Diagnostics; using Microsoft.AspNet.Http; namespace Microsoft.AspNet.Builder { public static class ErrorHandlerExtensions { /// /// Adds a middleware to the pipeline that will catch exceptions, log them, reset the request path, and re-execute the request. /// The request will not be re-executed if the response has already started. /// /// /// /// public static IApplicationBuilder UseErrorHandler(this IApplicationBuilder app, string errorHandlingPath) { var options = new ErrorHandlerOptions() { ErrorHandlingPath = new PathString(errorHandlingPath) }; return app.UseMiddleware(options); } /// /// Adds a middleware to the pipeline that will catch exceptions, log them, and re-execute the request in an alternate pipeline. /// The request will not be re-executed if the response has already started. /// /// /// /// public static IApplicationBuilder UseErrorHandler(this IApplicationBuilder app, Action configure) { var subAppBuilder = app.New(); configure(subAppBuilder); var errorPipeline = subAppBuilder.Build(); var options = new ErrorHandlerOptions() { ErrorHandler = errorPipeline }; return app.UseMiddleware(options); } } }