Skip to content

Commit 478e604

Browse files
authored
Link from basic middleware to middleware extensibility (#18367)
1 parent 36fe260 commit 478e604

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

  • aspnetcore/fundamentals/middleware

aspnetcore/fundamentals/middleware/write.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how to write custom ASP.NET Core middleware.
55
monikerRange: '>= aspnetcore-2.1'
66
ms.author: riande
77
ms.custom: mvc
8-
ms.date: 5/6/2020
8+
ms.date: 5/18/2020
99
no-loc: [Blazor, "Identity", "Let's Encrypt", Razor, SignalR]
1010
uid: fundamentals/middleware/write
1111
---
@@ -15,6 +15,9 @@ By [Rick Anderson](https://twitter.com/RickAndMSFT) and [Steve Smith](https://ar
1515

1616
Middleware is software that's assembled into an app pipeline to handle requests and responses. ASP.NET Core provides a rich set of built-in middleware components, but in some scenarios you might want to write a custom middleware.
1717

18+
> [!NOTE]
19+
> This topic describes how to write *convention-based* middleware. For an approach that uses strong typing and per-request activation, see <xref:fundamentals/middleware/extensibility>.
20+
1821
## Middleware class
1922

2023
Middleware is generally encapsulated in a class and exposed with an extension method. Consider the following middleware, which sets the culture for the current request from a query string:

0 commit comments

Comments
 (0)