Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion aspnetcore/web-api/action-return-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ The `HttpResults` can be useful when sharing code between Minimal APIs and Web A

The <xref:Microsoft.AspNetCore.Http.HttpResults> namespace contains classes that implement the <xref:Microsoft.AspNetCore.Http.IResult> interface. The `IResult` interface defines a contract that represents the result of an HTTP endpoint. The static [Results](<xref:Microsoft.AspNetCore.Http.Results>) class is used to create varying `IResult` objects that represent different types of responses.

The [Built-in results](/aspnet/core/fundamentals/minimal-apis?view=aspnetcore-7.0&preserve-view=true#binr7) table shows the common result helpers.
The [Built-in results](/aspnet/core/fundamentals/minimal-apis#built-in-results) table shows the common result helpers.

Consider the following code:

Expand Down