43 lines
1.4 KiB
C#
43 lines
1.4 KiB
C#
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Nop.Core.Infrastructure;
|
|
using Nop.Web.Framework.Infrastructure.Extensions;
|
|
|
|
namespace Nop.Web.Framework.Infrastructure;
|
|
|
|
/// <summary>
|
|
/// Represents object for the configuring exceptions and errors handling on application startup
|
|
/// </summary>
|
|
public partial class ErrorHandlerStartup : INopStartup
|
|
{
|
|
/// <summary>
|
|
/// Add and configure any of the middleware
|
|
/// </summary>
|
|
/// <param name="services">Collection of service descriptors</param>
|
|
/// <param name="configuration">Configuration of the application</param>
|
|
public void ConfigureServices(IServiceCollection services, IConfiguration configuration)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Configure the using of added middleware
|
|
/// </summary>
|
|
/// <param name="application">Builder for configuring an application's request pipeline</param>
|
|
public void Configure(IApplicationBuilder application)
|
|
{
|
|
//exception handling
|
|
application.UseNopExceptionHandler();
|
|
|
|
//handle 400 errors (bad request)
|
|
application.UseBadRequestResult();
|
|
|
|
//handle 404 errors (not found)
|
|
application.UsePageNotFound();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets order of this startup configuration implementation
|
|
/// </summary>
|
|
public int Order => 0; //error handlers should be loaded first
|
|
} |