![]() |
VOOZH | about |
dotnet add package MadEyeMatt.AspNetCore.Endpoints --version 9.0.1
NuGet\Install-Package MadEyeMatt.AspNetCore.Endpoints -Version 9.0.1
<PackageReference Include="MadEyeMatt.AspNetCore.Endpoints" Version="9.0.1" />
<PackageVersion Include="MadEyeMatt.AspNetCore.Endpoints" Version="9.0.1" />Directory.Packages.props
<PackageReference Include="MadEyeMatt.AspNetCore.Endpoints" />Project file
paket add MadEyeMatt.AspNetCore.Endpoints --version 9.0.1
#r "nuget: MadEyeMatt.AspNetCore.Endpoints, 9.0.1"
#:package MadEyeMatt.AspNetCore.Endpoints@9.0.1
#addin nuget:?package=MadEyeMatt.AspNetCore.Endpoints&version=9.0.1Install as a Cake Addin
#tool nuget:?package=MadEyeMatt.AspNetCore.Endpoints&version=9.0.1Install as a Cake Tool
A library that helps in building and configuring object-oriented minimal API endpoints.
Mapping every single minimal API endpoint in the Program.cs file can become
confusing very fast. For applications hosting a larger amount of endpoints this
library allows to implement an endpoint in a structured way. This endpoints will
then be automatically mapped, removing clutter from the Program.cs file.
Everything related to and endpoint like the mapping and the implementation itself is encapsulated in a single class. The library offers a default way of naming groups and endpoints. The default convention for the group name an endpoint belongs to is the last part of the namespace the endpoint belongs to. The default convention for the endppoint name id the class name of the endpoint.
This default conventions can be overridden by using attributes athe endpoints class level.
[EndpointGroup("GroupName")]
The name of the group this endpoint belongs to.
[EndpointName("SomeOtherName")]
The name of the endpoint.
Every endpoint is implemented in it's own class, deriving from EndpointBase.
Endpoints are discovered from the available types using this base class.
public sealed class Get : EndpointBase
{
/// <inheritdoc />
public override void Map(IEndpointRouteBuilder endpoints)
{
endpoints
.MapGet(this.Execute, "{id}")
.AllowAnonymous()
.Produces<Customer>(200, "application/json");
}
public async Task<IResult> Execute(HttpContext httpContext, string id)
{
return Results.Ok(new Customer
{
Name = "John Connor"
});
}
}
The mapping and configuration of additional meta data configuration of the endpoint is done
in the Map method. The actual endpoint implementation is done in the Execute method.
The name of the method free to choose, it doesn't affect the mapping of the endpoint in any way.
To allow the endpoint beeing automatically mapped one has to add this to the Program.cs:
app.MapEndpoints();
This it!
The endpoints are by default mapped under a global route prefix api. To change this
default value, one can configure the EndpointsOptions when configuring the application.
builder.Services.Configure<EndpointsOptions>(options =>
{
options.EndpointsRoutePrefix = "endpoints";
options.MapGroup = groupBuilder =>
{
groupBuilder.WithOpenApi();
};
});
In this exampple the global route prefix for all enpoints is changed to endpoints and
an additional endpoint group configuration is added using the MapGroup callback,
which is called for every endpoint group.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 is compatible. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
Showing the top 1 NuGet packages that depend on MadEyeMatt.AspNetCore.Endpoints:
| Package | Downloads |
|---|---|
|
Fluxera.Extensions.Hosting.Modules.AspNetCore
A module that enables ASP.NET Core. |
This package is not used by any popular GitHub repositories.