// Essentially this method does what MobileControlSectionHandler.Create()
        // does, but use MobileControlsSection for retrieving config data instead
        internal static ControlsConfig CreateControlsConfig(MobileControlsSection controlSection)
        {
            ControlsConfig config = new ControlsConfig(null);

            config["sessionStateHistorySize"]      = controlSection.SessionStateHistorySize.ToString(CultureInfo.InvariantCulture);
            config["cookielessDataDictionaryType"] = controlSection.CookielessDataDictionaryType.AssemblyQualifiedName;
            config["allowCustomAttributes"]        = controlSection.AllowCustomAttributes.ToString(CultureInfo.InvariantCulture);

            foreach (DeviceElement device in controlSection.Devices)
            {
                IndividualDeviceConfig deviceConfig = CreateDeviceConfig(config, device);
                AddControlAdapters(deviceConfig, device);

                if (!config.AddDeviceConfig(device.Name, deviceConfig))
                {
                    // Problem is due to a duplicated name
                    throw new ConfigurationErrorsException(
                              SR.GetString(SR.MobileControlsSectionHandler_DuplicatedDeviceName, device.Name));
                }
            }

            // Passing null means no config file and line number info will be
            // shown when error happens.  That is because there is no XmlNode of
            // the config section is available when MobileControlsSection is
            // used.  But the error messages raised should still be good enough.
            config.FixupDeviceConfigInheritance(null);

            return(config);
        }
        // Essentially this method does what MobileControlSectionHandler.Create()
        // does, but use MobileControlsSection for retrieving config data instead
        internal static ControlsConfig CreateControlsConfig(MobileControlsSection controlSection) {
            ControlsConfig config = new ControlsConfig(null);

            config["sessionStateHistorySize"] = controlSection.SessionStateHistorySize.ToString(CultureInfo.InvariantCulture);
            config["cookielessDataDictionaryType"] = controlSection.CookielessDataDictionaryType.AssemblyQualifiedName;
            config["allowCustomAttributes"] = controlSection.AllowCustomAttributes.ToString(CultureInfo.InvariantCulture);

            foreach (DeviceElement device in controlSection.Devices) {
                IndividualDeviceConfig deviceConfig = CreateDeviceConfig(config, device);
                AddControlAdapters(deviceConfig, device);

                if (!config.AddDeviceConfig(device.Name, deviceConfig)) {
                    // Problem is due to a duplicated name
                    throw new ConfigurationErrorsException(
                        SR.GetString(SR.MobileControlsSectionHandler_DuplicatedDeviceName, device.Name));
                }
            }

            // Passing null means no config file and line number info will be
            // shown when error happens.  That is because there is no XmlNode of
            // the config section is available when MobileControlsSection is
            // used.  But the error messages raised should still be good enough.
            config.FixupDeviceConfigInheritance(null);

            return config;
        }
Ejemplo n.º 3
0
        internal static ControlsConfig GetFromContext(HttpContext context)
        {
            // VSWhidbey 372365: Use MobileControlsSection if it is being returned
            Object config = context.GetSection("system.web/mobileControls");
            MobileControlsSection controlSection = config as MobileControlsSection;

            if (controlSection != null)
            {
                return(controlSection.GetControlsConfig());
            }
            return((ControlsConfig)config);
        }