Esempio n. 1
0
 private void HttpSessionCleanupMethod()
 {
     try {
         while (true)
         {
             Thread.Sleep(_SessionTimeOut * 1000);
             _SessionList.PurgeStaleSessions(false);
         }
     } catch (ThreadAbortException) {
         _SessionList.PurgeStaleSessions(true);
     }
 }