Can someone pls explain how to store and get cookies in an ASP.NET Core rc2 application? I can only find outdated information about the old HttpContext.Response.Cookie
HttpContext.Response.Cookie
For getting request cookie value:
HttpContext.Request.Cookies["<key>"]
Setting response cookie:
HttpContext.Response.Cookies.Append("<key>", <value>, <options?>)