DotNetBrightener.AspNet.Extensions.SelfDocumentedProblemResult.UI 2025.0.6-preview-334

This is a prerelease version of DotNetBrightener.AspNet.Extensions.SelfDocumentedProblemResult.UI.
There is a newer version of this package available.
See the version list below for details.
dotnet add package DotNetBrightener.AspNet.Extensions.SelfDocumentedProblemResult.UI --version 2025.0.6-preview-334
                    
NuGet\Install-Package DotNetBrightener.AspNet.Extensions.SelfDocumentedProblemResult.UI -Version 2025.0.6-preview-334
                    
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="DotNetBrightener.AspNet.Extensions.SelfDocumentedProblemResult.UI" Version="2025.0.6-preview-334" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DotNetBrightener.AspNet.Extensions.SelfDocumentedProblemResult.UI" Version="2025.0.6-preview-334" />
                    
Directory.Packages.props
<PackageReference Include="DotNetBrightener.AspNet.Extensions.SelfDocumentedProblemResult.UI" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DotNetBrightener.AspNet.Extensions.SelfDocumentedProblemResult.UI --version 2025.0.6-preview-334
                    
#r "nuget: DotNetBrightener.AspNet.Extensions.SelfDocumentedProblemResult.UI, 2025.0.6-preview-334"
                    
#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.
#:package DotNetBrightener.AspNet.Extensions.SelfDocumentedProblemResult.UI@2025.0.6-preview-334
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=DotNetBrightener.AspNet.Extensions.SelfDocumentedProblemResult.UI&version=2025.0.6-preview-334&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=DotNetBrightener.AspNet.Extensions.SelfDocumentedProblemResult.UI&version=2025.0.6-preview-334&prerelease
                    
Install as a Cake Tool

UI for ASP.NET Core Problem Result Extension

© 2025 DotNet Brightener

NuGet Version

Introduction

This is an extensions for ASP.Net Core applications that use the ProblemResult package. This package provides a UI for viewing information about a specific error / exception that can be thrown by the application.

Check out the ProblemResult package for more details on how to implement self-documented error objects.

Installation

You can install the package from NuGet:


dotnet add package DotNetBrightener.AspNet.Extensions.SelfDocumentedProblemResult.UI

Enable UI for viewing errors information

1. Enable generate XML documentation file in your projects / solutions.

Add the following code to the section <PropertyGroup> in your your .csproj file:

<GenerateDocumentationFile>true</GenerateDocumentationFile>

If you have multiple projects in your solution, you'll need to add the above code to all of the projects. Another way is to add that to the Directory.Build.props file in the root of your solution.

2. Configure the ASP.Net project to use the UI package.

Add the following code to your Startup.cs (if you use Startup.cs) or Program.cs (by default) file:


app.MapErrorDocsTrackerUI(options =>
{
    options.UiPath = "/errors-info-ui"; // this is where you can access the UI from your application
    options.ApplicationName = "Test Error"; // this is the name of your application
});

How this work?

When your application is configured to use UI package, the application will collect the error classes that are derived from IProblemResult. The error object when returned from the application, will now have type properties that leads to the information page of the error.

{
  "type": "https://localhost:7290/errors-info-ui#/WebAppCommonShared.Demo.Controllers.UserNotFoundError",
  "title": "User Not Found Error",
  "status": 404,
  "detail": "The error is thrown because the requested resource of type User could not be found",
  "instance": "/api/ExceptionTest/exception2/123",
  "data": {
    "userId": 123
  }
}

If developer / user opens the Url found in type property, they'll be able to see the information about the error. With the provided information, the developer can identify the issue and fix the issue easier. For the user, they can use this to seek support from developer.

Example

Given the error object defined as below:



/// <summary>
///     The error represents the requested object of type `User` could not be found
/// </summary>
/// <remarks>
///     The error is thrown because the requested resource of type `User` could not be found
/// </remarks>
public class UserNotFoundError : BaseProblemDetailsError
{
    public UserNotFoundError()
        : base(HttpStatusCode.NotFound)
    {

    }

    public UserNotFoundError(long userId)
        : this()
    {
        Data.Add("userId", userId);
    }
}

visiting the URL in type property will see an error page like following:

User Not Found Error

Description

The error represents the requested object of type User could not be found

Reason

The error is thrown because the requested resource of type User could not be found

Response HTTP Status Code

The request that encounters this error shall be responded with HTTP Status Code 404.

Additionally, refer to RFC 9110 Document Specification for Status Code 404.

Response Body

Below is the sample response body of the request that encounters this error. Depends on the error, there can be additional properties that help you identify the issue.

{
  "type": "https://localhost:7290/errors#WebAppCommonShared.Demo.Controllers.UserNotFoundError",
  "title": "User Not Found Error",
  "status": 404,
  "detail": "The error is thrown because the requested resource of type User could not be> >found",
  "instance": "{usually is URL of the request}"
}

The Description of the page is pulled from XML Document <summary> tag, and the Reason is pulled from <remarks> tag. The Response HTTP Status Code is the status code that the error object is associated with. The Response Body is the sample response body that the error object will be returned.

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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
2025.0.9-preview-509 110 10/2/2025
2025.0.9-preview-508 104 10/2/2025
2025.0.9-preview-487 167 9/29/2025
2025.0.9-preview-481 145 9/29/2025
2025.0.9-preview-473 127 9/28/2025
2025.0.8 161 9/23/2025
2025.0.6 182 9/22/2025
2025.0.6-preview-455 160 9/22/2025
2025.0.6-preview-454 283 9/17/2025
2025.0.6-preview-441 124 9/14/2025
2025.0.6-preview-440 122 9/14/2025
2025.0.6-preview-406 161 9/2/2025
2025.0.6-preview-401 150 9/2/2025
2025.0.6-preview-400 152 9/2/2025
2025.0.6-preview-369 200 8/27/2025
2025.0.6-preview-368 192 8/27/2025
2025.0.6-preview-334 175 8/18/2025
2025.0.6-preview-333 117 7/27/2025
2025.0.6-preview-332 488 7/24/2025
2025.0.6-preview-331 491 7/24/2025
2025.0.6-preview-328 486 7/24/2025
2025.0.6-preview-327 335 7/21/2025
2025.0.6-preview-326 339 7/21/2025
2025.0.6-preview-325 249 7/20/2025
2025.0.6-preview-324 245 7/20/2025
2025.0.6-preview-322 242 7/20/2025
2025.0.6-preview-321 252 7/19/2025
2025.0.6-preview-320 250 7/19/2025
2025.0.6-preview-319 161 7/17/2025
2025.0.6-preview-317 154 7/17/2025
2025.0.6-preview-316 157 7/17/2025
2025.0.6-preview-315 155 7/17/2025
2025.0.6-preview-314 154 7/17/2025
2025.0.6-preview-313 160 7/17/2025
2025.0.6-preview-312 161 7/16/2025
2025.0.5 176 7/10/2025
2025.0.5-preview-307 97 7/5/2025
2025.0.4 101 7/5/2025
2025.0.4-preview-305 107 7/4/2025
2025.0.4-preview-304 159 7/1/2025
2025.0.4-preview-299 146 5/31/2025
2025.0.4-preview-298 121 5/30/2025
2025.0.4-preview-296 160 5/30/2025
2025.0.4-preview-295 169 5/29/2025
2025.0.4-preview-293 171 5/26/2025
2025.0.4-preview-292 172 5/26/2025
2025.0.3 144 2/10/2025
2025.0.3-preview-288 131 2/10/2025
2025.0.2 135 1/21/2025
2025.0.2-preview-278 121 1/21/2025
2025.0.2-preview-277 141 12/16/2024
2025.0.1-rc-243301701 390 11/25/2024
2024.0.14.6 129 11/25/2024
2024.0.14.6-rc-243031001 190 10/29/2024
2024.0.14.6-rc-243030701 119 10/29/2024
2024.0.14.6-rc-242840501 124 10/10/2024
2024.0.14.6-rc-242820305 113 10/8/2024
2024.0.14.6-rc-242771401 223 10/3/2024
2024.0.14.6-rc-242770501 110 10/3/2024
2024.0.14.6-rc-242770201 138 10/3/2024
2024.0.14.6-rc-242761801 123 10/2/2024
2024.0.14.6-rc-242761601 137 10/2/2024
2024.0.14.6-rc-242761501 132 10/2/2024
2024.0.14.6-rc-242761401 132 10/2/2024
2024.0.14.6-rc-242760701 132 10/2/2024
2024.0.14.6-rc-242751002 118 10/1/2024
2024.0.14.6-rc-242750901 140 10/1/2024
2024.0.14.6-rc-242750502 131 10/1/2024
2024.0.14.6-rc-242750201 117 10/1/2024
2024.0.14.6-rc-242741501 115 9/30/2024
2024.0.14.6-rc-242730701 132 9/29/2024
2024.0.14.6-preview-2730501 98 9/29/2024
2024.0.14.6-preview-2701501 161 9/26/2024
2024.0.14.6-preview-2620901 166 9/18/2024
2024.0.14.6-preview-2570701 141 9/13/2024
2024.0.14.6-preview-2510703 184 9/7/2024
2024.0.14.6-preview-2480501 131 9/4/2024
2024.0.14.6-preview-2430401 168 8/30/2024
2024.0.14.6-preview-242730701 109 9/29/2024
2024.0.14.6-preview-2421703 125 8/29/2024
2024.0.14.6-preview-2421701 125 8/29/2024
2024.0.14.6-preview-2420901 123 8/29/2024
2024.0.14.6-preview-2390101 160 8/26/2024
2024.0.14.6-preview-2381603 164 8/25/2024
2024.0.14.6-preview-2341601 170 8/21/2024
2024.0.14.6-preview-2321602 148 8/20/2024
2024.0.14.6-preview-2190801 149 8/6/2024
2024.0.14.6-preview-2041501 124 7/22/2024
2024.0.14.6-preview-1920603 191 7/10/2024
2024.0.14.6-preview-1920301 137 7/10/2024
2024.0.14.6-preview-1911302 148 7/9/2024
2024.0.14.6-preview-1901001 152 7/8/2024
2024.0.14.6-preview-1900901 120 7/8/2024
2024.0.14.6-preview-1900801 138 7/8/2024
2024.0.14.6-preview-1860304 129 7/4/2024
2024.0.14.5 171 7/1/2024
2024.0.14.5-preview-1811601 140 6/29/2024
2024.0.14.5-preview-1810501 155 6/29/2024
2024.0.14.5-preview-180132 136 6/28/2024
2024.0.14.5-preview-180131 139 6/28/2024
2024.0.14.5-preview-180121 143 6/28/2024
2024.0.14.4 163 6/27/2024
2024.0.14.4-preview-8 136 6/27/2024
2024.0.14.4-preview-7 121 6/27/2024
2024.0.14.3 146 6/21/2024
2024.0.14.1 142 6/6/2024
2024.0.14.1-preview 116 6/6/2024
2024.0.14-preview-1 122 6/6/2024
2024.0.13.8-preview 121 6/6/2024
2024.0.13.2-preview-247 130 6/6/2024
2024.0.13.1-preview-0146 114 6/6/2024
2024.0.13-preview-1 135 6/6/2024
2024.0.12.15803-preview-03 121 6/6/2024
2024.0.12.15608 151 6/4/2024
2024.0.12.15515 187 6/3/2024
2024.0.12.15220 144 5/31/2024
2024.0.12.15220-alpha31-240... 121 5/31/2024
2024.0.12.14911 173 5/28/2024
2024.0.12.14910-alpha28-240... 113 5/28/2024
2024.0.12.14823 149 5/27/2024
2024.0.12.14522-alpha7-2405... 149 5/24/2024
2024.0.12.14514-alpha6-2405... 138 5/24/2024
2024.0.12.14511 168 5/24/2024
2024.0.12.14314 196 5/22/2024
2024.0.12.14114 172 5/20/2024
2024.0.12.12815 206 5/7/2024
2024.0.12.12814 171 5/7/2024
2024.0.12.12721 180 5/6/2024
2024.0.12.12702 176 5/5/2024
2024.0.12.12622 194 5/5/2024
2024.0.12.12514 170 5/4/2024
2024.0.12.12512 175 5/4/2024
2024.0.12.12510 176 5/4/2024
2024.0.12.12420 133 5/3/2024
2024.0.12.12319 133 5/2/2024
2024.0.12.12319-rc-2405021801 116 5/2/2024
2024.0.12.12318 121 5/2/2024
2024.0.12.12215 152 5/1/2024
2024.0.12.12011 158 4/29/2024
2024.0.12.11720 155 4/26/2024
2024.0.12.11719 155 4/26/2024
2024.0.12.11621 165 4/25/2024
2024.0.12.11523 156 4/24/2024
2024.0.12.11522 158 4/24/2024
2024.0.12.11417 178 4/23/2024
2024.0.12.11400 169 4/22/2024
2024.0.12.11316 176 4/22/2024
2024.0.11.10220 171 4/11/2024
2024.0.11.10120 153 4/10/2024
2024.0.11.10119 136 4/10/2024
2024.0.11.10115 152 4/10/2024
2024.0.11.9914 177 4/8/2024
2024.0.11.9901 148 4/7/2024
2024.0.11.9823 164 4/7/2024
2024.0.11.9401 162 4/2/2024
2024.0.11.9301 161 4/1/2024
2024.0.11.9206 164 3/31/2024
2024.0.11.9205 158 3/31/2024