I am building an API using .net core 2 I want to change the session time out for different users. It will be like the is a default session time out(24 Hour) for every one (which I can do from service configuration). And if some one says 'keep me logged in' then the session time out will be a month or larger.
But .net core does not have Session.Current Session like the previous .net versions where I can change the session Time Out value.
-Thanks for your help