threading

  • Thread starter Thread starter Sharon
  • Start date Start date
S

Sharon

should an assembly hosted by iis be considered running in a multithreaded
environment?
 
Yes, but that's the case for any host running managed code.
Not sure why you are asking this.
Willy.
 
i'm not sure if each request to an asp page that can also access the
assembly
creates a new thread.
i'm not sure how the whole thing works but i lock critical code anyway.
 
Each request is handled by a separate thread, only shared data accesses
should be synchronized.
Willy.
 
Back
Top