CapitalSix.AspNetCore.Middleware.ErrorHandling 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package CapitalSix.AspNetCore.Middleware.ErrorHandling --version 1.0.0
NuGet\Install-Package CapitalSix.AspNetCore.Middleware.ErrorHandling -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CapitalSix.AspNetCore.Middleware.ErrorHandling" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CapitalSix.AspNetCore.Middleware.ErrorHandling --version 1.0.0
#r "nuget: CapitalSix.AspNetCore.Middleware.ErrorHandling, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install CapitalSix.AspNetCore.Middleware.ErrorHandling as a Cake Addin
#addin nuget:?package=CapitalSix.AspNetCore.Middleware.ErrorHandling&version=1.0.0

// Install CapitalSix.AspNetCore.Middleware.ErrorHandling as a Cake Tool
#tool nuget:?package=CapitalSix.AspNetCore.Middleware.ErrorHandling&version=1.0.0

CapitalSix.AspNetCore.Middleware.ErrorHandling

This module captures "uncaught" exceptions and generated ProblemDetail results in json format.

How to configure the module.

void ConfigureServices(IServicesCollection services)
{
    ...
    services
        .AddControllers()
        .AddExceptionMiddleware();
    ...
}

void Configure(IApplicationBuilder app)
{
    ...
    app.UseExceptionMiddleware();
    ...
}

Customizing

It is possible to customize the middleware by adding custom mappings. For each type of exception a mapping can be added. This mapping is responsible for the conversion from Exception to ProblemDetails.

void ConfigureServices(IServicesCollection services)
{
    ...
    services.Configure<ExceptionMiddlewareOptions>(options =>
    {
        options.Mappings.Add<ArgumentNullException>(ex =>
             new ProblemDetails()
            {
                Status = 500,
                Title = "Arguments are not allowed to be null"
            });
    });
    ...
}
builder.Services
There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.1 2,635 4/7/2022
1.0.0 521 4/7/2022