/// <summary>
 /// Resets the default factory.
 /// </summary>
 public static void Reset()
 {
     lock (FactoryLock)
     {
         // Set it to null so it will be reloaded automatically
         Logger.Debug("Resetting ActionHandlerFactory");
         DefaultFactory = null;
     }
 }
 /// <summary>
 /// Resets the default factory.
 /// </summary>
 public static void Reset()
 {
     lock (FactoryLock)
     {
         // Set it to null so it will be reloaded automatically
         Logger.Debug("Resetting ActionHandlerFactory");
         DefaultFactory = null;
     }
 }