Settings for automatic redirection of mobile devices.
Inheritance: System.Configuration.ConfigurationSection
        /// <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;
        }
        /// <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;
        }
Exemple #3
0
        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();
            }
        }
Exemple #6
0
 static Manager()
 {
     Log      = (LogSection)WebConfigurationManager.GetWebApplicationSection("fiftyOne/log");
     Redirect = (RedirectSection)WebConfigurationManager.GetWebApplicationSection("fiftyOne/redirect");
 }
Exemple #7
0
 static Manager()
 {
     Log = (LogSection) WebConfigurationManager.GetWebApplicationSection("fiftyOne/log");
     Redirect = (RedirectSection) WebConfigurationManager.GetWebApplicationSection("fiftyOne/redirect");
 }