Add authorization to middleware table (#16252)
* Add authorization to middleware table * Update aspnetcore/fundamentals/middleware/index.md Co-Authored-By: Kirk Larkin <6025110+serpent5@users.noreply.github.com> Co-authored-by: Kirk Larkin <6025110+serpent5@users.noreply.github.com>pull/16291/head
parent
e526267abc
commit
fda6505196
|
@ -214,6 +214,7 @@ ASP.NET Core ships with the following middleware components. The *Order* column
|
|||
| Middleware | Description | Order |
|
||||
| ---------- | ----------- | ----- |
|
||||
| [Authentication](xref:security/authentication/identity) | Provides authentication support. | Before `HttpContext.User` is needed. Terminal for OAuth callbacks. |
|
||||
| [Authorization](xref:Microsoft.AspNetCore.Builder.AuthorizationAppBuilderExtensions.UseAuthorization*) | Provides authorization support. | Immediately after the Authentication Middleware. |
|
||||
| [Cookie Policy](xref:security/gdpr) | Tracks consent from users for storing personal information and enforces minimum standards for cookie fields, such as `secure` and `SameSite`. | Before middleware that issues cookies. Examples: Authentication, Session, MVC (TempData). |
|
||||
| [CORS](xref:security/cors) | Configures Cross-Origin Resource Sharing. | Before components that use CORS. |
|
||||
| [Diagnostics](xref:fundamentals/error-handling) | Several separate middlewares that provide a developer exception page, exception handling, status code pages, and the default web page for new apps. | Before components that generate errors. Terminal for exceptions or serving the default web page for new apps. |
|
||||
|
|
Loading…
Reference in New Issue