Configuration settings for the log file creation and detail.
Inheritance: System.Configuration.ConfigurationSection
Esempio n. 1
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();
            }
        }
Esempio n. 4
0
 static Manager()
 {
     Log      = (LogSection)WebConfigurationManager.GetWebApplicationSection("fiftyOne/log");
     Redirect = (RedirectSection)WebConfigurationManager.GetWebApplicationSection("fiftyOne/redirect");
 }
Esempio n. 5
0
 static Manager()
 {
     Log = (LogSection) WebConfigurationManager.GetWebApplicationSection("fiftyOne/log");
     Redirect = (RedirectSection) WebConfigurationManager.GetWebApplicationSection("fiftyOne/redirect");
 }