2 instantiations of ControlsConfig
System.Web.Mobile (2)
UI\MobileControls\MobileControlsSectionHandler.cs (1)
33ControlsConfig config = new ControlsConfig((ControlsConfig)parent);
UI\MobileControls\MobileControlsSectionHelper.cs (1)
24ControlsConfig config = new ControlsConfig(null);
18 references to ControlsConfig
System.Web.Mobile (18)
UI\MobileControls\ControlsConfig.cs (4)
28private readonly ControlsConfig _parent; 34internal static ControlsConfig GetFromContext(HttpContext context) 43return (ControlsConfig)config; 46internal ControlsConfig(ControlsConfig parent)
UI\MobileControls\IndividualDeviceConfig.cs (2)
37private readonly ControlsConfig _controlsConfig; 69internal IndividualDeviceConfig(ControlsConfig controlsConfig,
UI\MobileControls\MobileControlsSection.cs (2)
18private ControlsConfig _controlConfig; 67internal ControlsConfig GetControlsConfig() {
UI\MobileControls\MobileControlsSectionHandler.cs (3)
33ControlsConfig config = new ControlsConfig((ControlsConfig)parent); 152private IndividualDeviceConfig CreateDeviceConfig(ControlsConfig config,
UI\MobileControls\MobileControlsSectionHelper.cs (3)
23internal static ControlsConfig CreateControlsConfig(MobileControlsSection controlSection) { 24ControlsConfig config = new ControlsConfig(null); 52private static IndividualDeviceConfig CreateDeviceConfig(ControlsConfig config, DeviceElement device) {
UI\MobileControls\MobilePage.cs (3)
297Type t = ControlsConfig.GetFromContext(HttpContext.Current).CookielessDataDictionaryType; 382ControlsConfig.GetFromContext(Context).AllowCustomAttributes ? 431ControlsConfig.GetFromContext(Context).GetDeviceConfig(Context);
UI\MobileControls\SessionViewState.cs (1)
192_historySize = ControlsConfig.GetFromContext(context).SessionStateHistorySize;