Add missing param to AddCookie call
parent
1557bef724
commit
c4661e0410
|
@ -173,7 +173,7 @@ This would then be wired up during cookie service registration in the `Configure
|
||||||
|
|
||||||
```csharp
|
```csharp
|
||||||
services.AddAuthentication("MyCookieAuthenticationScheme")
|
services.AddAuthentication("MyCookieAuthenticationScheme")
|
||||||
.AddCookie(options =>
|
.AddCookie("MyCookieAuthenticationScheme", options =>
|
||||||
{
|
{
|
||||||
options.Events = new CookieAuthenticationEvents
|
options.Events = new CookieAuthenticationEvents
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue