32 overrides of Properties
System.Configuration.ConfigurationManager (29)
System\Configuration\AppSettingsSection.cs (1)
23protected internal override ConfigurationPropertyCollection Properties => EnsureStaticPropertyBag();
System\Configuration\ClientSettingsSection.cs (1)
18protected internal override ConfigurationPropertyCollection Properties
System\Configuration\ConnectionStringSettings.cs (1)
40protected internal override ConfigurationPropertyCollection Properties => s_properties;
System\Configuration\ConnectionStringSettingsCollection.cs (1)
15protected internal override ConfigurationPropertyCollection Properties => s_properties;
System\Configuration\ConnectionStringsSection.cs (1)
14protected internal override ConfigurationPropertyCollection Properties => s_properties;
System\Configuration\DateTimeConfigurationCollection.cs (1)
11protected internal override ConfigurationPropertyCollection Properties => s_properties;
System\Configuration\DateTimeConfigurationElement.cs (1)
25protected internal override ConfigurationPropertyCollection Properties => s_properties;
System\Configuration\DefaultSection.cs (1)
20protected internal override ConfigurationPropertyCollection Properties => EnsureStaticPropertyBag();
System\Configuration\IdnElement.cs (1)
24protected internal override ConfigurationPropertyCollection Properties
System\Configuration\IgnoreSection.cs (1)
20protected internal override ConfigurationPropertyCollection Properties => EnsureStaticPropertyBag();
System\Configuration\IriParsingElement.cs (1)
21protected internal override ConfigurationPropertyCollection Properties
System\Configuration\KeyValueConfigurationCollection.cs (1)
17protected internal override ConfigurationPropertyCollection Properties => s_properties;
System\Configuration\KeyValueConfigurationElement.cs (1)
31protected internal override ConfigurationPropertyCollection Properties => s_properties;
System\Configuration\NameValueConfigurationCollection.cs (1)
11protected internal override ConfigurationPropertyCollection Properties => s_properties;
System\Configuration\NameValueConfigurationElement.cs (1)
24protected internal override ConfigurationPropertyCollection Properties => s_properties;
System\Configuration\ProtectedConfigurationSection.cs (1)
32protected internal override ConfigurationPropertyCollection Properties => s_properties;
System\Configuration\ProtectedProviderSettings.cs (1)
23protected internal override ConfigurationPropertyCollection Properties => _properties;
System\Configuration\ProviderSettings.cs (1)
38protected internal override ConfigurationPropertyCollection Properties
System\Configuration\ProviderSettingsCollection.cs (1)
15protected internal override ConfigurationPropertyCollection Properties => s_properties;
System\Configuration\SchemeSettingElement.cs (1)
29protected internal override ConfigurationPropertyCollection Properties
System\Configuration\SettingElement.cs (1)
56protected internal override ConfigurationPropertyCollection Properties
System\Configuration\SettingValueElement.cs (1)
16protected internal override ConfigurationPropertyCollection Properties =>
System\Configuration\UriSection.cs (1)
36protected internal override ConfigurationPropertyCollection Properties => _properties;
System\Diagnostics\SourceElementsCollection.cs (1)
61protected internal override ConfigurationPropertyCollection Properties => _properties;
System\Diagnostics\SwitchElementsCollection.cs (1)
39protected internal override ConfigurationPropertyCollection Properties => _properties;
System\Diagnostics\SystemDiagnosticsSection.cs (1)
24protected internal override ConfigurationPropertyCollection Properties => s_properties;
System\Diagnostics\TraceSection.cs (1)
36protected internal override ConfigurationPropertyCollection Properties => s_properties;
System\Diagnostics\TypedElement.cs (1)
39protected internal override ConfigurationPropertyCollection Properties => _properties;
System\Drawing\Configuration\SystemDrawingSection.cs (1)
21protected internal override ConfigurationPropertyCollection Properties => s_properties;
System.Runtime.Caching (3)
System\Runtime\Caching\Configuration\MemoryCacheElement.cs (1)
62protected override ConfigurationPropertyCollection Properties
System\Runtime\Caching\Configuration\MemoryCacheSection.cs (1)
39protected override ConfigurationPropertyCollection Properties
System\Runtime\Caching\Configuration\MemoryCacheSettingsCollection.cs (1)
19protected override ConfigurationPropertyCollection Properties
44 references to Properties
System.Configuration.ConfigurationManager (44)
System\Configuration\ConfigurationElement.cs (37)
172ConfigurationProperty prop = Properties[propertyName]; 175prop = Properties[DefaultCollectionPropertyName]; 182Debug.Assert(Properties.Contains(propertyName), "Properties.Contains(propertyName)"); 183SetPropertyValue(Properties[propertyName], value, false); // Do not ignore locks!!! 292if (Properties.DefaultCollectionProperty != null) 295collection = this[Properties.DefaultCollectionProperty] as ConfigurationElementCollection; 326if (Properties.DefaultCollectionProperty != null) 329ConfigurationElementCollection collection = this[Properties.DefaultCollectionProperty] as ConfigurationElementCollection; 345foreach (ConfigurationProperty prop in Properties) 375ConfigurationPropertyCollection props = Properties; 378source.Properties[propInfo.Name]; 454foreach (ConfigurationProperty prop in Properties) 571if (Properties.DefaultCollectionProperty != null) 574ConfigurationElementCollection collection = this[Properties.DefaultCollectionProperty] as ConfigurationElementCollection; 594if (Properties.DefaultCollectionProperty != null) 597ConfigurationElementCollection collection = this[Properties.DefaultCollectionProperty] as ConfigurationElementCollection; 608ConfigurationPropertyCollection props = Properties; // Force the bag to be up to date 624ConfigurationProperty prop = parentElement.Properties[key]; 660ConfigurationProperty prop = parentElement.Properties[key]; 678(otherElement.Properties.Count != Properties.Count)) 681foreach (ConfigurationProperty configProperty in Properties) 701foreach (ConfigurationProperty configProperty in Properties) 912ConfigurationPropertyCollection props = Properties; 920ConfigurationProperty prop = sourceElement.Properties[key]; 939foreach (ConfigurationProperty prop in Properties) 994foreach (ConfigurationProperty prop in Properties) 1045ConfigurationPropertyCollection props = Properties; 1216foreach (object prop in Properties) 1313ConfigurationProperty propToLock = Properties[attribToLockTrim]; 1332if ((collection == null) && (Properties.DefaultCollectionProperty != null)) 1336this[Properties.DefaultCollectionProperty] as ConfigurationElementCollection; 1385ConfigurationPropertyCollection props = Properties; 1641ConfigurationProperty propToLock = Properties[key]; 1646foreach (ConfigurationProperty prop in Properties) 1681foreach (ConfigurationProperty prop in Properties) 1814ConfigurationPropertyCollection props = Properties;
System\Configuration\ConfigurationLockCollection.cs (3)
134ConfigurationProperty propToLock = _thisElement.Properties[attribToLockTrim]; 138if ((collection == null) && (_thisElement.Properties.DefaultCollectionProperty != null)) 142_thisElement[_thisElement.Properties.DefaultCollectionProperty] as
System\Configuration\ElementInformation.cs (2)
32if ((collection == null) && (_thisElement.Properties.DefaultCollectionProperty != null)) 36_thisElement[_thisElement.Properties.DefaultCollectionProperty] as
System\Configuration\PropertyInformation.cs (1)
21private ConfigurationProperty Prop => _prop ??= _thisElement.Properties[Name];
System\Configuration\PropertyInformationCollection.cs (1)
15foreach (ConfigurationProperty prop in thisElement1.Properties)