From fa854f71f15f29f3650f101547521026e986dadd Mon Sep 17 00:00:00 2001 From: Chris Ross Date: Wed, 22 Nov 2023 16:05:00 -0800 Subject: [PATCH] Update index.md (#31110) --- aspnetcore/fundamentals/middleware/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnetcore/fundamentals/middleware/index.md b/aspnetcore/fundamentals/middleware/index.md index 1ee84ed3a9..909a0f5b35 100644 --- a/aspnetcore/fundamentals/middleware/index.md +++ b/aspnetcore/fundamentals/middleware/index.md @@ -288,7 +288,7 @@ ASP.NET Core ships with the following middleware components. The *Order* column | [Request Decompression](xref:fundamentals/middleware/request-decompression) | Provides support for decompressing requests. | Before components that read the request body. | | [Response Compression](xref:performance/response-compression) | Provides support for compressing responses. | Before components that require compression. | | [Request Localization](xref:fundamentals/localization) | Provides localization support. | Before localization sensitive components. Must appear after Routing Middleware when using . | -| [Request Timeouts](xref:performance/timeouts) | Provides support for configuring request timeouts, global and per endpoint. | `UseRouting` must come before `UseRequestTimeouts`. | +| [Request Timeouts](xref:performance/timeouts) | Provides support for configuring request timeouts, global and per endpoint. | `UseRequestTimeouts` must come after `UseExceptionHandler`, `UseDeveloperExceptionPage`, and `UseRouting`. | | [Endpoint Routing](xref:fundamentals/routing) | Defines and constrains request routes. | Terminal for matching routes. | | [SPA](xref:Microsoft.AspNetCore.Builder.SpaApplicationBuilderExtensions.UseSpa%2A) | Handles all requests from this point in the middleware chain by returning the default page for the Single Page Application (SPA) | Late in the chain, so that other middleware for serving static files, MVC actions, etc., takes precedence.| | [Session](xref:fundamentals/app-state) | Provides support for managing user sessions. | Before components that require Session. | @@ -311,4 +311,4 @@ ASP.NET Core ships with the following middleware components. The *Order* column :::moniker-end -[!INCLUDE[](~/fundamentals/middleware/index/includes/index3-7.md)] \ No newline at end of file +[!INCLUDE[](~/fundamentals/middleware/index/includes/index3-7.md)]