Advertisement
Guest User

Untitled

a guest
Feb 20th, 2020
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. services.AddDistributedMemoryCache();
  2.  
  3. services.AddSession(options =>
  4. {
  5. options.Cookie.HttpOnly = true;
  6. // Make the session cookie essential
  7. options.Cookie.IsEssential = true;
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement