Fixing Readme

This commit is contained in:
Harsh Gupta 2015-02-19 10:20:16 -08:00
parent 1f98918f1f
commit e0f7c1b810
115 changed files with 194 additions and 10 deletions

View File

@ -0,0 +1,4 @@
ActionConstraintWebSite
===
This web site illustrates how to use action constraints to select the right action based on the request.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -1,4 +1,4 @@
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.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -0,0 +1,4 @@
ActivatorWebSite
===
This web site demonstrates the use of activate attribute on controller properties, view components and tag helpers.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -0,0 +1,4 @@
AddServicesWebSite
===
This web site throws since the startup does not call AddMvc().

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -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.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -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.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -0,0 +1,5 @@
ApplicationModelWebSite
===
This web site illustrates how to use customize application model by having custom implementations of
`IActionModelConvention`, `IControllerModelConvention` and `IParameterModelConvention`.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -0,0 +1,4 @@
AutofacWebSite
===
This web site illustrates how to use Autofac as the DI container for an MVC application.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -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.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -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.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -0,0 +1,4 @@
CompositeViewEngineWebSite
===
This web site illustrates how to register and use custom `ViewEngines`.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -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.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -0,0 +1 @@
Functional test site for verifying controllers registration rules.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -1 +0,0 @@
Functional test site for verifying controllers registration rules.

View File

@ -0,0 +1 @@
Functional test site for verifying that controllers registered as services can be consumed by DefaultControllerFactory.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -1 +0,0 @@
Functional test site for verifying that controllers registered as services can be consumed by DefaultControllerFactory.

View File

@ -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.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -1,4 +1,4 @@
ErrorPageMiddlewareWebSite
===
This web site illustrates how to register error page middleware.
This web site illustrates how to register error page middleware.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -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.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -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.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -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.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -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.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -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.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -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.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -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.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -0,0 +1,4 @@
MvcTagHelpersWebSite
===
This web site illustrates how to use MVC tag helpers.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -0,0 +1,4 @@
PreCompilationWebSite
===
This web site illustrates use cases for precompilation of razor pages.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -0,0 +1 @@
A functional test website to verify that the Razor compiler cache gets lazily initialized.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -1 +0,0 @@
A functional test website to verify that the Razor compiler cache gets lazily initialized.

View File

@ -0,0 +1,4 @@
RazorInstrumentationWebSite
===
This web site is used for functional testing of page instrumentation.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -1,4 +1,4 @@
RazorViewEngineOptionsWebSite
===
This web site illustrates use cases for `RazorViewEngineOptions.FileProvider`.
This web site illustrates use cases for `RazorViewEngineOptions.FileProvider`.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -0,0 +1,4 @@
RazorWebSite
===
This web site illustrates use cases for razor view engine, partials and view components.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -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.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -0,0 +1 @@
Hello, World

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -0,0 +1,4 @@
RoutingWebSite
===
This web site illustrates how to use conventional and attribute routes.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -0,0 +1,4 @@
TagHelpersWebSite
===
This web site illustrates how to register and use custom tag helpers.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -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.

View File

@ -0,0 +1 @@
HelloWorld

View File

@ -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.

View File

@ -0,0 +1 @@
HelloWorld

Some files were not shown because too many files have changed in this diff Show More