How do you sign-out all sessions with ASP.NET Identity? Lets say you are signed-in from two different browser with the same user. When the user signs-out from one browser, the session of the other browser should be invalidated as well. (I need this to invalided all sessions of a user on password change.)
You can sign-out the current session with ASP.Net Identity with the following code.
var AutheticationManager = HttpContext.GetOwinContext().Authentication;
AuthenticationManager.SignOut();
This will not sign-out all sessions of a user.
Edit: The idea with the session was a good starting point. I solved the problem and wrote a blog post in case you have the same problem.