AspNetCore.ResponseWrapper
1.0.1
dotnet add package AspNetCore.ResponseWrapper --version 1.0.1
NuGet\Install-Package AspNetCore.ResponseWrapper -Version 1.0.1
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="AspNetCore.ResponseWrapper" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AspNetCore.ResponseWrapper --version 1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: AspNetCore.ResponseWrapper, 1.0.1"
#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 AspNetCore.ResponseWrapper as a Cake Addin #addin nuget:?package=AspNetCore.ResponseWrapper&version=1.0.1 // Install AspNetCore.ResponseWrapper as a Cake Tool #tool nuget:?package=AspNetCore.ResponseWrapper&version=1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
AspNetCore.ResponseWrapper
AspNetCore.ResponseWrapper is a HTTP API response wrapper, It supports various Action return type, Model invalid wrapper, Swagger response display and also supports custom response wrapper.
Features:
- ModelInvalid response wrapper
- ObjectResult/EmptyResult response wrapper
- Swagger response wrapped type display
- Custom response wrapper
- Disable response wrapper for specified Controller/Action
Usage
- Basic
builder.Services.AddControllers().AddResponseWrapper();
- Disable response wrapper
[DisableWrapper]
[ApiController]
[Route("[controller]")]
public class WeatherForecastController : ControllerBase
{
}
or
[DisableWrapper]
[HttpGet("GetWeatherForecast")]
public IEnumerable<WeatherForecast> Get()
{
return Enumerable.Range(1, 5).Select(index => new WeatherForecast
{
Date = DateTime.Now.AddDays(index),
TemperatureC = Random.Shared.Next(-20, 55),
Summary = Summaries[Random.Shared.Next(Summaries.Length)]
})
.ToArray();
}
See samples...
Installation
dotnet add Package AspNetCore.ResponseWrapper
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. 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.
-
net5.0
- No dependencies.
-
net6.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.