There is an ASP.NET Web App , some of it's modules are implemented by threads(C#).
When the threads are running , What does it result to if IIS Process Recycled ?
There is an ASP.NET Web App , some of it's modules are implemented by threads(C#).
When the threads are running , What does it result to if IIS Process Recycled ?
Your app domain will be unloaded, all threads will stop. You will have to handle this case with appropriate Application_Start
and Application_End
handlers.