convert images to avif

This commit is contained in:
Marcello 2024-06-25 14:02:56 +02:00
parent 8026e1465b
commit b74f634cd2
Signed by: m-lamonaca
SSH key fingerprint: SHA256:8db8uii6Gweq7TbKixFBioW2T8CbgtyFETyYL3cr3zk
53 changed files with 17 additions and 17 deletions

View file

@ -23,7 +23,7 @@ When a middleware short-circuits, it's called a *terminal middleware* because it
The ASP.NET Core request pipeline consists of a sequence of request delegates, called one after the other.
![request-delegate-pipeline](../../../img/dotnet_request-delegate-pipeline.png)
![request-delegate-pipeline](../../../img/dotnet_request-delegate-pipeline.avif)
Each delegate can perform operations before and after the next delegate. Exception-handling delegates should be called early in the pipeline, so they can catch exceptions that occur in later stages of the pipeline. It's possible to chain multiple request delegates together with `Use`.
@ -62,8 +62,8 @@ app.Run(async context =>
## Middleware Order
![middleware-pipeline](../../../img/dotnet_middleware-pipeline.png)
![mvc-endpoint](../../../img/dotnet_mvc-endpoint.png)
![middleware-pipeline](../../../img/dotnet_middleware-pipeline.avif)
![mvc-endpoint](../../../img/dotnet_mvc-endpoint.avif)
The Endpoint middleware executes the filter pipeline for the corresponding app type.