-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Conditionally add custom IActionResultExecutor to work with minimal APIs
- Loading branch information
Showing
3 changed files
with
29 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#if NET6_0_OR_GREATER | ||
using Microsoft.AspNetCore.Http; | ||
using Microsoft.AspNetCore.Mvc; | ||
using Microsoft.AspNetCore.Mvc.Infrastructure; | ||
using System.Threading.Tasks; | ||
|
||
namespace Hellang.Middleware.ProblemDetails | ||
{ | ||
internal class MinimalApiResultExecutor : IActionResultExecutor<ObjectResult> | ||
{ | ||
public Task ExecuteAsync(ActionContext context, ObjectResult result) => | ||
Results.Json(result.Value, options: null, "application/problem+json", result.StatusCode) | ||
.ExecuteAsync(context.HttpContext); | ||
} | ||
} | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters