ApiResponses 1.0.0

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

// Install ApiResponses as a Cake Tool
#tool nuget:?package=ApiResponses&version=1.0.0

ApiResponses

Description

Tool for sending responses to API queries for ASP.NET

Installation

PM> Install-Package ApiResponses
> dotnet add package ApiResponses

Available methods

    ActionResult Good(HttpContext context, IList data);
    ActionResult Good(HttpContext context, string data);
    
    ActionResult BadRequest(HttpContext context, IList data);
    ActionResult BadRequest(HttpContext context, string data);
    
    ActionResult Forbidden(HttpContext context, string data);
    
    ActionResult Unauthorized(HttpContext context);
    
    ActionResult EndpointNotFound(HttpContext context);
    
    ActionResult ServerProblem(HttpContext context, string data);
    
    ActionResult Custom(HttpContext context, int statusCode, string statusName, string message, string data);
    ActionResult Custom(HttpContext context, int statusCode, string statusName, string message, IList data);
    ActionResult Custom(HttpContext context, int statusCode, string statusName, string message);

Usage

using ApiResponses;
...

[ApiController]
[Route("api/[controller]")]
public class AuthController : ControllerBase
{
    [HttpPost]
    public IActionResult Login([FromBody] LoginModel user)
    {
        // code
        return ApiResponse.Good(this.HttpContext, "Successfully logged in");
    }
}

Response

{
    "statusName": "Ok",
    "statusCode": 200,
    "statusDescription": "OK",
    "message": "Everything is good",
    "dateTime": "2022-01-18T16:29:18.9383181+01:00",
    "data": [
        "Successfully logged in"
    ]
}

TODO:

More methods need to be added corresponding to HTTP codes - currently there are only the most basic methods and general Custom methods

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  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.0.1 419 5/20/2022
1.0.0 421 1/18/2022