public WebInitialiserHttpModule()
 {
     coreInstance = new Core();
     RememberCore();
     coreInstance.Initialise();
     ForgetCore();
 }
Esempio n. 2
0
 /// <summary>
 /// Resets the Core instance to null, forcing it to reinitialise on the next access.
 /// </summary>
 public static void Reset()
 {
     lock (syncInstance)
     {
         instance = null;
     }
 }