예제 #1
0
 private static void DoWarmupActions(ControllerFactory f)
 {
     foreach (Configuration.WarmupAction wa in ApplicationContext.Context.Configuration.Script.WarmupActions.Controls)
     {
         ScreenController sc = f.CreateController <ScreenController>(wa.Controller);
         sc.CallFunctionNoException(wa.Function, new object[] { });
     }
 }