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