26 writes to
System.Configuration.ConfigurationManager (26)
System\Configuration\AppSettingsSection.cs (1)
39set { base[s_propFile] = value; }
System\Configuration\ConnectionStringSettings.cs (3)
47set { base[s_propName] = value; } 54set { base[s_propConnectionString] = value; } 61set { base[s_propProviderName] = value; }
System\Configuration\DateTimeConfigurationElement.cs (1)
31set { base[s_propValue] = value; }
System\Configuration\IdnElement.cs (1)
36set { this[_enabled] = value; }
System\Configuration\IriParsingElement.cs (1)
33set { this[_enabled] = value; }
System\Configuration\KeyValueConfigurationElement.cs (2)
40set { base[s_propValue] = value; } 53base[s_propKey] = _initKey;
System\Configuration\NameValueConfigurationElement.cs (3)
20base[s_propName] = name; 21base[s_propValue] = value; 33set { base[s_propValue] = value; }
System\Configuration\ProtectedConfigurationSection.cs (1)
43set { base[s_propDefaultProvider] = value; }
System\Configuration\ProviderSettings.cs (4)
51set { base[_propName] = value; } 58set { base[_propType] = value; } 176base[setPropName] = value; 183base[propName] = value; // Add them to the property bag
System\Configuration\SettingElement.cs (3)
73base[s_propName] = value; 86base[s_propSerializeAs] = value; 99base[s_propValue] = value;
System\Diagnostics\ListenerElementsCollection.cs (3)
123this[s_propName] = value; 137this[s_propOutputOpts] = value; 151this[_propListenerTypeName] = value;
System\Diagnostics\TypedElement.cs (2)
35this[s_propInitData] = value; 50this[s_propTypeName] = value;
System\Drawing\Configuration\SystemDrawingSection.cs (1)
18set => this[s_bitmapSuffix] = value;
77 references to
System.Configuration.ConfigurationManager (76)
System\Configuration\AppSettingsSection.cs (3)
29public KeyValueConfigurationCollection Settings => (KeyValueConfigurationCollection)base[s_propAppSettings]; 36string fileValue = (string)base[s_propFile]; 81if (!string.IsNullOrEmpty((string)base[s_propFile]))
System\Configuration\ClientSettingsSection.cs (1)
31return (SettingElementCollection)base[s_propSettings];
System\Configuration\ConfigurationElement.cs (22)
178return this[prop]; 295collection = this[Properties.DefaultCollectionProperty] as ConfigurationElementCollection; 329ConfigurationElementCollection collection = this[Properties.DefaultCollectionProperty] as ConfigurationElementCollection; 348((ConfigurationElement)this[prop]).SetLocked(); 456ConfigurationElement elem = this[prop] as ConfigurationElement; 461ConfigurationElementCollection collection = this[prop] as ConfigurationElementCollection; 574ConfigurationElementCollection collection = this[Properties.DefaultCollectionProperty] as ConfigurationElementCollection; 597ConfigurationElementCollection collection = this[Properties.DefaultCollectionProperty] as ConfigurationElementCollection; 664ConfigurationElement childElement = (ConfigurationElement)this[prop]; 703object o = this[configProperty]; 704if (o != null) hHashCode ^= this[configProperty].GetHashCode(); 999ConfigurationElement childElement = (ConfigurationElement)this[prop]; 1000if ((ConfigurationElement)sourceElement[prop] != null) 1002childElement.Unmerge((ConfigurationElement)sourceElement[prop], 1336this[Properties.DefaultCollectionProperty] as ConfigurationElementCollection; 1397defaultCollection = (ConfigurationElement)this[defaultCollectionProperty]; 1523ConfigurationElement childElement = (ConfigurationElement)this[prop]; 1631ConfigurationElementCollection collection = this[props.DefaultCollectionProperty] as ConfigurationElementCollection; 1649((ConfigurationElement)this[prop]).SetLocked(); 1671ConfigurationElementCollection collection = this[props.DefaultCollectionProperty] as ConfigurationElementCollection; 1684((ConfigurationElement)this[prop]).SetLocked(); 1690defaultCollection = (ConfigurationElement)this[defaultCollectionProperty];
System\Configuration\ConfigurationLockCollection.cs (1)
142_thisElement[_thisElement.Properties.DefaultCollectionProperty] as
System\Configuration\ConnectionStringSettings.cs (3)
46get { return (string)base[s_propName]; } 53get { return (string)base[s_propConnectionString]; } 60get { return (string)base[s_propProviderName]; }
System\Configuration\ConnectionStringsSection.cs (1)
18=> (ConnectionStringSettingsCollection)base[s_propConnectionStrings];
System\Configuration\DateTimeConfigurationElement.cs (1)
30get { return (DateTime)base[s_propValue]; }
System\Configuration\ElementInformation.cs (1)
36_thisElement[_thisElement.Properties.DefaultCollectionProperty] as
System\Configuration\IdnElement.cs (1)
35get { return (UriIdnScope)this[_enabled]; }
System\Configuration\IriParsingElement.cs (1)
32get { return (bool)this[_enabled]; }
System\Configuration\KeyValueConfigurationElement.cs (2)
34public string Key => (string)base[s_propKey]; 39get { return (string)base[s_propValue]; }
System\Configuration\NameValueConfigurationElement.cs (2)
27public string Name => (string)base[s_propName]; 32get { return (string)base[s_propValue]; }
System\Configuration\ProtectedConfigurationSection.cs (2)
34private ProtectedProviderSettings ProtectedProviders => (ProtectedProviderSettings)base[s_propProviders]; 42get { return (string)base[s_propDefaultProvider]; }
System\Configuration\ProtectedProviderSettings.cs (1)
26public ProviderSettingsCollection Providers => (ProviderSettingsCollection)base[_propProviders];
System\Configuration\ProviderSettings.cs (4)
50get { return (string)base[_propName]; } 57get { return (string)base[_propType]; } 75_propertyNameCollection.Add(prop.Name, (string)base[prop]); 159return (string)base[prop];
System\Configuration\SchemeSettingElement.cs (2)
19get { return (string)this[s_name]; } 26get { return (GenericUriParserOptions)this[s_genericUriParserOptions]; }
System\Configuration\SettingElement.cs (3)
69return (string)base[s_propName]; 82return (SettingsSerializeAs)base[s_propSerializeAs]; 95return (SettingValueElement)base[s_propValue];
System\Configuration\UriSection.cs (3)
28public IdnElement Idn => (IdnElement)this[_idn]; 31public IriParsingElement IriParsing => (IriParsingElement)this[_iriParsing]; 34public SchemeSettingElementCollection SchemeSettings => (SchemeSettingElementCollection)this[_schemeSettings];
System\Diagnostics\ListenerElementsCollection.cs (4)
112public FilterElement Filter => (FilterElement)this[s_propFilter]; 119return (string)this[s_propName]; 132return (TraceOptions)this[s_propOutputOpts]; 147return (string)this[_propListenerTypeName];
System\Diagnostics\SourceElementsCollection.cs (5)
56public ListenerElementsCollection Listeners => (ListenerElementsCollection)this[_propListeners]; 59public string Name => (string)this[_propName]; 64public string SwitchName => (string)this[_propSwitchName]; 67public string SwitchValue => (string)this[_propSwitchValue]; 70public string SwitchType => (string)this[_propSwitchType];
System\Diagnostics\SwitchElementsCollection.cs (2)
37public string Name => (string)this[_propName]; 42public string Value => (string)this[_propValue];
System\Diagnostics\SystemDiagnosticsSection.cs (4)
27public SourceElementsCollection Sources => (SourceElementsCollection)base[s_propSources]; 30public ListenerElementsCollection SharedListeners => (ListenerElementsCollection)base[s_propSharedListeners]; 33public SwitchElementsCollection Switches => (SwitchElementsCollection)base[s_propSwitches]; 36public TraceSection Trace => (TraceSection)base[s_propTrace];
System\Diagnostics\TraceSection.cs (4)
25public bool AutoFlush => (bool)this[s_propAutoFlush]; 28public int IndentSize => (int)this[s_propIndentSize]; 31public ListenerElementsCollection Listeners => (ListenerElementsCollection)this[s_propListeners]; 34public bool UseGlobalLock => (bool)this[s_propUseGlobalLock];
System\Diagnostics\TypedElement.cs (2)
30return (string)this[s_propInitData]; 46return (string)this[s_propTypeName];
System\Drawing\Configuration\SystemDrawingSection.cs (1)
17get => (string)this[s_bitmapSuffix];
System.Runtime.Caching (1)
System\Runtime\Caching\Configuration\MemoryCacheSection.cs (1)
52return (MemoryCacheSettingsCollection)base[s_propNamedCaches];