Commit Graph

2 Commits (83b5a4715fd25e4eb6f7c8427c0ef03850a7fa07)

Author SHA1 Message Date
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
Steve Smith ff6b4b196e Custom model binding (#3275)
* Initial outline and updates to links.

* Fixing formatting

* adding sample

* sample base64 string

* Working on article and sample

* ready for initial review

* Responding to feedback

* Uncommenting attribute

* switching back to authorid

* Fixing code listing

* Updated based on feedback

* responding to feedback

* Responding to feedback. Tested simplified app and still works as expected.
2017-05-03 16:21:50 -04:00