As I know in a standard ASP.NET application, an auth cookie should be set in order to say to ASP.NET that this user is authenticated.
If I create a new application with Visual Studio 2015, it generate a "Login method" template as follow:
var result = await SignInManager.PasswordSignInAsync(model.Email, model.Password, model.RememberMe, shouldLockout: false);
There is no other code.
My question is: WHERE is the authentication cookie set?
Thanks a lot!