Nummy.ExceptionHandler 1.1.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package Nummy.ExceptionHandler --version 1.1.2                
NuGet\Install-Package Nummy.ExceptionHandler -Version 1.1.2                
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="Nummy.ExceptionHandler" Version="1.1.2" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Nummy.ExceptionHandler --version 1.1.2                
#r "nuget: Nummy.ExceptionHandler, 1.1.2"                
#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 Nummy.ExceptionHandler as a Cake Addin
#addin nuget:?package=Nummy.ExceptionHandler&version=1.1.2

// Install Nummy.ExceptionHandler as a Cake Tool
#tool nuget:?package=Nummy.ExceptionHandler&version=1.1.2                

Nummy Global Exception & Logging Handling, Monitoring package for .NET Core

NuGet Version License

Overview

This is a .NET Core library for global exception handling in your application.

Installation

https://www.nuget.org/packages/Nummy.ExceptionHandler Or install the package via NuGet Package Manager Console:

Install-Package Nummy.ExceptionHandler

Getting Started

In your Program.cs file add the following line:

using Nummy.ExceptionHandler.Extensions;
// .. other configurations

services.AddNummyExceptionHandler(options =>
{
    // Configure options here
    // Example: 
    options.ReturnResponseDuringException = true;                 // if false, the app throws exceptions as a normal
    options.ResponseContentType = NummyResponseContentType.Json;
    options.ResponseStatusCode = HttpStatusCode.BadRequest;
    options.Response = new { message = "An error occurred" };     // or your custom object
});

// .. other configurations
var app = builder.Build();

Use Middleware: In the Configure method of your Startup.cs file, add the following line:

using Nummy.ExceptionHandler.Extensions;
var app = builder.Build();

// .. other configurations

app.UseNummyExceptionHandler();

// .. other middleware

Now, your application is set up to handle unhandled exceptions globally using the Nummy Exception Handler.

License

This library is licensed under the MIT License.

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in 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.1.4 455 11/18/2023
1.1.3 398 11/18/2023
1.1.2 391 11/17/2023
1.1.1 410 11/17/2023
1.1.0 416 11/17/2023
1.0.9 386 11/16/2023
1.0.8 403 11/16/2023
1.0.7 411 11/16/2023
1.0.6 403 11/16/2023
1.0.5 385 11/16/2023
1.0.4 373 11/16/2023
1.0.3 385 11/16/2023
1.0.2-alpha 397 11/16/2023
1.0.1-alpha 398 11/16/2023
1.0.0-alpha 347 11/16/2023