, .
, (, , HttpContext.Current,...), , .
Similarly for any classes that you create as local variables or fields in these classes and to access the session.
But, as usual, you need to synchronize access to shared resources, for example:
- Links Static (C #) / Shared (VB.NET).
- Singletons
- External resources like file system ... etc.
I have seen alternating errors too often in ASP.NET applications, for example. a singleton is used by several parallel queries without synchronization, as a result of which the user sees the data of user B. Data
source
share