gracious.response.lib 1.0.0

dotnet add package gracious.response.lib --version 1.0.0
                    
NuGet\Install-Package gracious.response.lib -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="gracious.response.lib" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="gracious.response.lib" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="gracious.response.lib" />
                    
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 gracious.response.lib --version 1.0.0
                    
#r "nuget: gracious.response.lib, 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.
#:package gracious.response.lib@1.0.0
                    
#: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=gracious.response.lib&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=gracious.response.lib&version=1.0.0
                    
Install as a Cake Tool

Gracious Response Library

Gracious Response Library provides a simple and elegant way to standardize HTTP responses in your ASP.NET applications. It includes methods to generate consistent response objects for different HTTP status codes.

Features

  • Easy Integration: Create standardized HTTP responses with minimal effort.
  • Flexibility: Supports custom messages and data payloads.
  • Predefined Methods:
    • ResponseOk: For 200 OK responses.
    • ResponseBadRequest: For 400 Bad Request responses.
    • ResponseNotFound: For 404 Not Found responses.
    • ResponseServerError: For 500 Internal Server Error responses.

Installation

Install the package via NuGet:

dotnet add package gracious.response.lib --version <Version>

Alternatively, use the NuGet Package Manager:

PM> Install-Package gracious.response.lib -Version <Version>

Usage

Here's an example of how to use the library:

using gracious.response.lib;
using Microsoft.AspNetCore.Mvc;

public class SampleController : ControllerBase
{
    [HttpGet("success")]
    public ActionResult GetSuccessResponse()
    {
        return BaseResponse.ResponseOk("Request successful", new { id = 1, name = "Sample Data" });
    }

    [HttpGet("error")]
    public ActionResult GetErrorResponse()
    {
        return BaseResponse.ResponseServerError(new Exception("Something went wrong"));
    }
}

Requirements

  • .NET Core 6.0 or later
  • ASP.NET Core

Contributing

Contributions are welcome! Please open an issue or submit a pull request on the GitHub repository.

License

This project is licensed under the MIT License.


Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 was computed.  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
1.0.0 214 3/27/2025