ASP.NET Core session authentication
问题 I'm developing an ASP.NET Core 2.2 web application. I want to store user claims in application memory, not in cookies. I add AddDistributedMemoryCache , AddSession and UseSession as described here, but when page is requested, I still see cookie data sent to server and received from the server. My Startup class: public class Startup { public Startup(IConfiguration configuration) { Configuration = configuration; } public IConfiguration Configuration { get; } // This method gets called by the