public void ChangeBundleStartLevel(IBundle bundle, int startLevel) { if (bundle.GetBunldeStartLevel() <= startLevel) { bundle.Start(BundleStartOptions.General); } else { bundle.Stop(BundleStopOptions.General); } }