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