AspNetCore.Docs/aspnetcore/mvc/advanced/custom-model-binding
Rick Anderson 96ce03d509 Update live with current master (#4426)
* Add PO localization doc

* More edits

* Updates TaskCache to Task

Since [TaskCache](https://github.com/aspnet/Common/issues/238) was removed this updates the samples to use `Task.CompletedTask` instead

* More edits

* More edits

* Change code snippet type from C# to CSHTML

* Add missing snippet types

* React to feedback

* Add support disclaimer

* UE pass on Publishing to IIS topic

* Drop literal_block comments and fix a few code blocks

* Fix demo code for AddAuthentication.AddCookie

In .Net Core 2.0 using the code as supplied results in an exception, the fix is to pass the scheme name when calling AddCookie.

Fails:
services.AddAuthentication("MyCookieAuthenticationScheme")
        .AddCookie

Works:
Fix demo code for services.AddAuthentication.AddCookie
services.AddAuthentication("MyCookieAuthenticationScheme")
        .AddCookie("MyCookieAuthenticationScheme",

* React to feedback

* Fix one

* Convert title to sentence case

* Add missing param to AddCookie call

* React to feedback
2017-09-27 14:41:18 -07:00
..
images Custom model binding (#3275) 2017-05-03 16:21:50 -04:00
sample/CustomModelBindingSample Update live with current master (#4426) 2017-09-27 14:41:18 -07:00