Add missing comma

pull/3858/head
Scott Addie 2017-07-31 22:04:02 -05:00 committed by GitHub
parent 5ec4ced904
commit fade39c5ee
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ uid: security/authentication/cookie
<a name=security-authentication-cookie-middleware></a>
ASP.NET Core provides cookie [middleware](../../fundamentals/middleware.md#fundamentals-middleware) which serializes a user principal into an encrypted cookie and then, on subsequent requests, validates the cookie, recreates the principal and assigns it to the `User` property on `HttpContext`. If you want to provide your own login screens and user databases you can use the cookie middleware as a standalone feature.
ASP.NET Core provides cookie [middleware](../../fundamentals/middleware.md#fundamentals-middleware) which serializes a user principal into an encrypted cookie and then, on subsequent requests, validates the cookie, recreates the principal and assigns it to the `User` property on `HttpContext`. If you want to provide your own login screens and user databases, you can use the cookie middleware as a standalone feature.
<a name=security-authentication-cookie-middleware-configuring></a>