pull/23972/head
GitHubPang 2021-11-18 09:17:52 +08:00 committed by GitHub
parent 6c168424a0
commit 79f9ed86da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -201,7 +201,7 @@ Multiple handlers can be registered in the order that they should execute. Each
:::code language="csharp" source="http-requests/samples/6.0/HttpRequestsSample/Program.cs" id="snippet_AddHttpMessageHandlerMultiple":::
In the the preceding code, `SampleHandler1` runs first, before `SampleHandler2`.
In the preceding code, `SampleHandler1` runs first, before `SampleHandler2`.
### Use DI in outgoing request middleware

View File

@ -297,7 +297,7 @@ A configured `WebApplication` supports `Map{Verb}` and <xref:Microsoft.AspNetCor
### Route Handlers
Route handlers are methods that execute when the a route matches. Route handlers can be a function or any shape, including synchronous or asynchronous. Route handlers can be a lambda expression, a local function, an instance method or a static method.
Route handlers are methods that execute when the route matches. Route handlers can be a function or any shape, including synchronous or asynchronous. Route handlers can be a lambda expression, a local function, an instance method or a static method.
#### Lambda expression