Fixing Readme
This commit is contained in:
parent
1f98918f1f
commit
e0f7c1b810
|
|
@ -0,0 +1,4 @@
|
||||||
|
ActionConstraintWebSite
|
||||||
|
===
|
||||||
|
|
||||||
|
This web site illustrates how to use action constraints to select the right action based on the request.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
Binary file not shown.
|
|
@ -1,4 +1,4 @@
|
||||||
ActionResultsWebSite
|
ActionResultsWebSite
|
||||||
===
|
===
|
||||||
|
|
||||||
This web site illustrates how to use out of box action results which are provided as methods on the controller class.
|
This web site illustrates how to use out of box action results which are provided as methods on the controller class.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
ActivatorWebSite
|
||||||
|
===
|
||||||
|
|
||||||
|
This web site demonstrates the use of activate attribute on controller properties, view components and tag helpers.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
Binary file not shown.
|
|
@ -0,0 +1,4 @@
|
||||||
|
AddServicesWebSite
|
||||||
|
===
|
||||||
|
|
||||||
|
This web site throws since the startup does not call AddMvc().
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
Binary file not shown.
|
|
@ -0,0 +1,5 @@
|
||||||
|
AntiForgeryWebSite
|
||||||
|
===
|
||||||
|
|
||||||
|
This web site illustrates how to use anti forgery system to prevent CSRF attacks. The web site has an
|
||||||
|
`AccountsController` which uses an anti forgery token to validate incoming form posts.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
Binary file not shown.
|
|
@ -0,0 +1,5 @@
|
||||||
|
ApiExplorerWebSite
|
||||||
|
===
|
||||||
|
|
||||||
|
This web site illustrates various ways to enable and disable api explorer discovery for actions.
|
||||||
|
This also demonstrates how to consume api explorer data.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
Binary file not shown.
|
|
@ -0,0 +1,5 @@
|
||||||
|
ApplicationModelWebSite
|
||||||
|
===
|
||||||
|
|
||||||
|
This web site illustrates how to use customize application model by having custom implementations of
|
||||||
|
`IActionModelConvention`, `IControllerModelConvention` and `IParameterModelConvention`.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
Binary file not shown.
|
|
@ -0,0 +1,4 @@
|
||||||
|
AutofacWebSite
|
||||||
|
===
|
||||||
|
|
||||||
|
This web site illustrates how to use Autofac as the DI container for an MVC application.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
Binary file not shown.
|
|
@ -0,0 +1,5 @@
|
||||||
|
BasicWebSite
|
||||||
|
===
|
||||||
|
|
||||||
|
This web site illustrates many commonly used features including but not limited to
|
||||||
|
link generation, action results and content negotiation, `RouteData` amongst others.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
Binary file not shown.
|
|
@ -0,0 +1,5 @@
|
||||||
|
BestEffortLinkGenerationWebSite
|
||||||
|
===
|
||||||
|
|
||||||
|
This web site illustrates how to use best-effort link generation, which will allow conventional
|
||||||
|
routes to generate a link to an action which doesn't exist.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
Binary file not shown.
|
|
@ -0,0 +1,4 @@
|
||||||
|
CompositeViewEngineWebSite
|
||||||
|
===
|
||||||
|
|
||||||
|
This web site illustrates how to register and use custom `ViewEngines`.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
Binary file not shown.
|
|
@ -0,0 +1,5 @@
|
||||||
|
ConnegWebsite
|
||||||
|
===
|
||||||
|
|
||||||
|
This web site illustrates in depth how MVC performs output content negotiation based on the input headers and
|
||||||
|
content. It also demonstrates various options available to participate in content negotation process.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
||||||
|
Functional test site for verifying controllers registration rules.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Functional test site for verifying controllers registration rules.
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
Functional test site for verifying that controllers registered as services can be consumed by DefaultControllerFactory.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Functional test site for verifying that controllers registered as services can be consumed by DefaultControllerFactory.
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CustomRouteWebSite
|
CustomRouteWebSite
|
||||||
===
|
===
|
||||||
|
|
||||||
This web site illustrates how a custom route injects route data based on the user.
|
This web site illustrates how a custom route injects route data based on the user.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
ErrorPageMiddlewareWebSite
|
ErrorPageMiddlewareWebSite
|
||||||
===
|
===
|
||||||
|
|
||||||
This web site illustrates how to register error page middleware.
|
This web site illustrates how to register error page middleware.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
ConnegWebsite
|
||||||
|
===
|
||||||
|
|
||||||
|
This web site illustrates how to use `FileContentResult` via `File` method on the controller. It also demonstrates
|
||||||
|
how to write and register a custom `FileSender` middleware.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
Binary file not shown.
|
|
@ -0,0 +1,5 @@
|
||||||
|
FiltersWebSite
|
||||||
|
===
|
||||||
|
|
||||||
|
This web site illustrates how to use filters to customize request and response. It shows how filters can be
|
||||||
|
used at a global, controller or action level and how they can be extended.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
Binary file not shown.
|
|
@ -0,0 +1,5 @@
|
||||||
|
FormatFilterWebSite
|
||||||
|
===
|
||||||
|
|
||||||
|
This web site illustrates in depth the process of using new feature Url Media header mappings. It demonstrates adding
|
||||||
|
Url formats and content type mappings and using them. It also shows how routes need to change for this feature to work.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
Binary file not shown.
|
|
@ -0,0 +1,5 @@
|
||||||
|
FormatterWebSite
|
||||||
|
===
|
||||||
|
|
||||||
|
This web site illustrates how to input formatters operate on the request body. It also demonstrates
|
||||||
|
how custom options can be set for model validation.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
Binary file not shown.
|
|
@ -0,0 +1,6 @@
|
||||||
|
InlineConstraintsWebSite
|
||||||
|
===
|
||||||
|
|
||||||
|
This web site illustrates how to use inline route constraints with traditional
|
||||||
|
routes. The startup class in its configure method reads the routes which are added to configuration by the
|
||||||
|
test methods.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
Binary file not shown.
|
|
@ -1,4 +1,4 @@
|
||||||
LoggingWebSite
|
LoggingWebSite
|
||||||
===
|
===
|
||||||
|
|
||||||
This web site illustrates how to register and configure `Elm` logger.
|
This web site illustrates how to register and configure `Elm` logger.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
ModelBindingWebSite
|
||||||
|
===
|
||||||
|
|
||||||
|
This web site illustrates how to use and configure various knobs of model binding to let the model binding
|
||||||
|
system bind action parameters to the values which are present in the request. The website also uses model validation
|
||||||
|
to validate the models created using model binding.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
Binary file not shown.
|
|
@ -0,0 +1,4 @@
|
||||||
|
MvcTagHelpersWebSite
|
||||||
|
===
|
||||||
|
|
||||||
|
This web site illustrates how to use MVC tag helpers.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
Binary file not shown.
|
|
@ -0,0 +1,4 @@
|
||||||
|
PreCompilationWebSite
|
||||||
|
===
|
||||||
|
|
||||||
|
This web site illustrates use cases for precompilation of razor pages.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
||||||
|
A functional test website to verify that the Razor compiler cache gets lazily initialized.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
A functional test website to verify that the Razor compiler cache gets lazily initialized.
|
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
RazorInstrumentationWebSite
|
||||||
|
===
|
||||||
|
|
||||||
|
This web site is used for functional testing of page instrumentation.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
Binary file not shown.
|
|
@ -1,4 +1,4 @@
|
||||||
RazorViewEngineOptionsWebSite
|
RazorViewEngineOptionsWebSite
|
||||||
===
|
===
|
||||||
|
|
||||||
This web site illustrates use cases for `RazorViewEngineOptions.FileProvider`.
|
This web site illustrates use cases for `RazorViewEngineOptions.FileProvider`.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
RazorWebSite
|
||||||
|
===
|
||||||
|
|
||||||
|
This web site illustrates use cases for razor view engine, partials and view components.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
Binary file not shown.
|
|
@ -0,0 +1,5 @@
|
||||||
|
RequestServicesWebSite
|
||||||
|
===
|
||||||
|
|
||||||
|
This web site registers services which are scoped per request. This web site is used for functional testing
|
||||||
|
to ensure that the services are per-request and does not linger around to impact the next request.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
||||||
|
Hello, World
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
Binary file not shown.
|
|
@ -0,0 +1,4 @@
|
||||||
|
RoutingWebSite
|
||||||
|
===
|
||||||
|
|
||||||
|
This web site illustrates how to use conventional and attribute routes.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
Binary file not shown.
|
|
@ -0,0 +1,4 @@
|
||||||
|
TagHelpersWebSite
|
||||||
|
===
|
||||||
|
|
||||||
|
This web site illustrates how to register and use custom tag helpers.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
Binary file not shown.
|
|
@ -0,0 +1,5 @@
|
||||||
|
UrlHelperWebSite
|
||||||
|
===
|
||||||
|
|
||||||
|
This web site illustrates how to register a `CustomURLHelper` which can based on configuration, generate content
|
||||||
|
urls pointing to local or a CDN server and generate lower case urls.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
Binary file not shown.
|
|
@ -0,0 +1,6 @@
|
||||||
|
ValidationWebSite
|
||||||
|
===
|
||||||
|
|
||||||
|
This web site illustrates how to add `ModelMetadataType` attribute and validate the models during model binding.
|
||||||
|
It also show how to validate models using the `TryValidateModel` API as well as how to use the `RemoteAttribute` as
|
||||||
|
part of validation. `RemoteAttribute` scenarios shown here all work in combination with attribute routing.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
HelloWorld
|
||||||
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue