From 6b8d3efd9904b56c289bbea4f13b017892c363ba Mon Sep 17 00:00:00 2001 From: Tom Dykstra Date: Mon, 7 Nov 2022 13:46:20 -0800 Subject: [PATCH] Add link to filters doc (#27525) --- aspnetcore/fundamentals/minimal-apis/responses.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/aspnetcore/fundamentals/minimal-apis/responses.md b/aspnetcore/fundamentals/minimal-apis/responses.md index d1601f5c97..d68d5669a0 100644 --- a/aspnetcore/fundamentals/minimal-apis/responses.md +++ b/aspnetcore/fundamentals/minimal-apis/responses.md @@ -181,6 +181,8 @@ Here's an example of a filter that uses one of these interfaces: :::code language="csharp" source="~/fundamentals/minimal-apis/7.0-samples/HttpResultInterfaces/Program.cs" id="snippet_filter"::: +For more information, see [Filters in Minimal API apps](xref:fundamentals/minimal-apis/min-api-filters). + ## Customizing responses Applications can control responses by implementing a custom type. The following code is an example of an HTML result type: