How to invalidate .AspNet.ApplicationCookie after Adding user to Role using Asp.Net Identity 2?
I have 2 questions related to that: 1) I need to invalidate.AspNet.ApplicationCookie after Adding / Removing some remote user to Role using Asp.Net Identity 2. I Tried to use UpdateSecurityStamp, but since no password or username is changed, SecurityStamp remains same. When I use ApplicationRoleManger I can see that User roles are updated but in User.Identity Claims they stay unchanged. 2) How does .AspNet.ApplicationCookie Validation work and how can I access it? I was trying to use this code, but with no effect What is ASP.NET Identity's IUserSecurityStampStore<TUser> interface? Update: This