Add missing param to AddCookie call

pull/4425/head
Scott Addie 2017-09-27 11:09:37 -05:00
parent 1557bef724
commit c4661e0410
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ This would then be wired up during cookie service registration in the `Configure
```csharp
services.AddAuthentication("MyCookieAuthenticationScheme")
.AddCookie(options =>
.AddCookie("MyCookieAuthenticationScheme", options =>
{
options.Events = new CookieAuthenticationEvents
{