5 instantiations of ConfigurationValue
System.Configuration (5)
System\Configuration\ConfigurationElement.cs (4)
1490
LockedAttributesList = new
ConfigurationValue
(reader.Value, ConfigurationValueFlags.Default, new PropertySourceInfo(reader));
1493
LockedAllExceptList = new
ConfigurationValue
(reader.Value, ConfigurationValueFlags.Default, new PropertySourceInfo(reader));
1496
LockedElementList = new
ConfigurationValue
(reader.Value, ConfigurationValueFlags.Default, new PropertySourceInfo(reader));
1499
LockedAllElementsExceptList = new
ConfigurationValue
(reader.Value, ConfigurationValueFlags.Default, new PropertySourceInfo(reader));
System\Configuration\ConfigurationValues.cs (1)
95
ConfigurationValue configValue = new
ConfigurationValue
(value, valueFlags, sourceInfo);
24 references to ConfigurationValue
System.Configuration (24)
System\Configuration\ConfigurationElement.cs (7)
579
ConfigurationValue
ConfigValue = parentElement.Values.GetConfigValue(index);
1287
internal void ReportInvalidLock(string attribToLockTrim, ConfigurationLockCollectionType lockedType,
ConfigurationValue
value, String collectionProperties) {
1351
private ConfigurationLockCollection ParseLockedAttributes(
ConfigurationValue
value, ConfigurationLockCollectionType lockType) {
1429
ConfigurationValue
LockedAttributesList = null;
1430
ConfigurationValue
LockedAllExceptList = null;
1431
ConfigurationValue
LockedElementList = null;
1432
ConfigurationValue
LockedAllElementsExceptList = null;
System\Configuration\ConfigurationValues.cs (17)
59
internal
ConfigurationValue
GetConfigValue(string key) {
60
return (
ConfigurationValue
)BaseGet(key);
63
internal
ConfigurationValue
GetConfigValue(int index) {
64
return (
ConfigurationValue
)BaseGet(index);
68
ConfigurationValue
configurationValue = GetConfigValue(key);
78
ConfigurationValue
configurationValue = GetConfigValue(key);
84
private
ConfigurationValue
CreateConfigValue(object value, ConfigurationValueFlags valueFlags, PropertySourceInfo sourceInfo) {
95
ConfigurationValue
configValue = new ConfigurationValue(value, valueFlags, sourceInfo);
100
ConfigurationValue
configValue = CreateConfigValue(value, valueFlags, sourceInfo);
113
ConfigurationValue
configValue = GetConfigValue(key);
128
ConfigurationValue
configValue = GetConfigValue(index);
151
ConfigurationValue
configurationValue = (
ConfigurationValue
)BaseGet(key);
161
ConfigurationValue
configurationValue = (
ConfigurationValue
)BaseGet(key);
171
ConfigurationValue
configurationValue = (
ConfigurationValue
)BaseGet(key);