/// <summary> /// Creates a new configuration instance checking for /// fresh data. /// </summary> internal static void Refresh() { // Ensure the managers detection section is refreshed in case the // process is not going to restart as a result of the change. ConfigurationManager.RefreshSection("fiftyOne/redirect"); Redirect = Support.GetWebApplicationSection("fiftyOne/redirect", false) as RedirectSection; }
static Manager() { Log = (LogSection)Support.GetWebApplicationSection("fiftyOne/log", false); Redirect = (RedirectSection)Support.GetWebApplicationSection("fiftyOne/redirect", false); if (Redirect == null) Redirect = new RedirectSection(); }
static Manager() { Log = (LogSection)Support.GetWebApplicationSection("fiftyOne/log", false); Redirect = (RedirectSection)Support.GetWebApplicationSection("fiftyOne/redirect", false); ImageOptimisation = (ImageOptimisationSection)Support.GetWebApplicationSection("fiftyOne/imageOptimisation", false); if (Redirect == null) Redirect = new RedirectSection(); if (ImageOptimisation == null) ImageOptimisation = new ImageOptimisationSection(); }
static Manager() { Log = (LogSection)Support.GetWebApplicationSection("fiftyOne/log", false); Redirect = (RedirectSection)Support.GetWebApplicationSection("fiftyOne/redirect", false); ImageOptimisation = (ImageOptimisationSection)Support.GetWebApplicationSection("fiftyOne/imageOptimisation", false); if (Redirect == null) { Redirect = new RedirectSection(); } if (ImageOptimisation == null) { ImageOptimisation = new ImageOptimisationSection(); } }
static Manager() { Log = (LogSection)WebConfigurationManager.GetWebApplicationSection("fiftyOne/log"); Redirect = (RedirectSection)WebConfigurationManager.GetWebApplicationSection("fiftyOne/redirect"); }
static Manager() { Log = (LogSection) WebConfigurationManager.GetWebApplicationSection("fiftyOne/log"); Redirect = (RedirectSection) WebConfigurationManager.GetWebApplicationSection("fiftyOne/redirect"); }