Skip to content

Commit

Permalink
Fix ambiguous reference to terminal middleware (#34405)
Browse files Browse the repository at this point in the history
  • Loading branch information
tdykstra authored Dec 25, 2024
1 parent f15d0b6 commit c55fd5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aspnetcore/fundamentals/middleware/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ The following table shows the requests and responses from `http://localhost:1234
| `localhost:1234` | `Hello from non-Map delegate.` |
| `localhost:1234/?branch=main` | `Branch used = main` |

<xref:Microsoft.AspNetCore.Builder.UseWhenExtensions.UseWhen%2A> also branches the request pipeline based on the result of the given predicate. Unlike with `MapWhen`, this branch is rejoined to the main pipeline if it doesn't short-circuit or contain a terminal middleware:
<xref:Microsoft.AspNetCore.Builder.UseWhenExtensions.UseWhen%2A> also branches the request pipeline based on the result of the given predicate. Unlike with `MapWhen`, this branch is rejoined to the main pipeline if it doesn't contain a terminal middleware:

[!code-csharp[](~/fundamentals/middleware/index/snapshot/Chain60/ProgramUseWhen.cs?highlight=4-5)]

Expand Down

0 comments on commit c55fd5f

Please sign in to comment.