I am building a class to store User ID and User Role in a session. I\'m not sure how this class will behave when multiple users are on the site at the same time. Does anyone
The code you posted is the exact replica of some code we have here.
It has been working fine for 2 years now.
Each users access is own session. Every request made to the server is a new thread. Even though 2 request are simultaneous, the HttpContext.Current is different for each of those request.