I've been playing with Asp.NET Core 2.2 and Identity, using examples explained here. In particular I'm using the StsServer app which allows a user to authenticate using OpenID Hybrid flow or Windows authentication.
What I have seen is that it stores: 
- 3 session cookies if user identity is not remembered
- 2 session cookies + 1 cookie if the user identity is remembered when the browser is reopened
Is there a way to avoid such cookies?
Thanks,