* Update Filters to 6.0
* Use file-scoped namespace declarations
* Restore < 6.0 version
* Update Filter scopes and order of execution
* Update Cancellation and short-circuiting
* Update Dependency injection
* Update specific filters
* IFilterFactory
* Update Use middleware in the filter pipeline
* Remove unused appsettings.json values
* .
* Set ms.date
* Changes against Issue #18636
* Removed wrongly added INCLUDE
* Update aspnetcore/includes/reservedRouting.md
Co-authored-by: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com>
* Update aspnetcore/includes/reservedRouting.md
Co-authored-by: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com>
* Update aspnetcore/mvc/controllers/routing.md
Co-authored-by: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com>
* Update aspnetcore/includes/reservedRouting.md
Co-authored-by: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com>
* Update reservedRouting.md
* Add no-loc metadata
Co-authored-by: subhasish Mandal <sm8017797063@gmail.com>
Co-authored-by: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com>
Co-authored-by: Luke Latham <1622880+guardrex@users.noreply.github.com>
* Replace all hardcoded status codes with System.Net.HttpStatusCode
* Replace all StatusCodes references to HttpStatusCode
Co-authored-by: Michal Mrnuštík <michal.mrnustik@riganti.cz>
The section `Specifying attribute route optional parameters, default values, and constraints` contains source code with `[HttpPost("product14/{id:int}")]` however the explanatory text that follows says the code uses `[HttpPost("product/{id:int}")]` which is incorrect (`product` should be `product14`). I have changed the explanatory text, the example of a matching URL (`/product/3` should read `/product14/3`) and the name of controller class (`ProductsController.ShowProduct` should read `Products14Controller.ShowProduct`).
I believe this sentence:
> The fully qualified domain name must be used to specify the model...
Should refer to the "class name" rather than "domain name" and thus read:
> The fully qualified class name must be used to specify the model...