38 references to Values
System.Configuration (38)
System\Configuration\ConfigurationElement.cs (26)
291Values.AssociateContext(configRecord); 565Values.Clear(); 577for (int index = 0; index < parentElement.Values.Count; index++) { 578string key = parentElement.Values.GetKey(index); 579ConfigurationValue ConfigValue = parentElement.Values.GetConfigValue(index); 613for (int index = 0; index < parentElement.Values.Count; index++) { 614string key = parentElement.Values.GetKey(index); 615object value = parentElement.Values[index]; 639if (!Object.Equals(Values[configProperty.Name], compareToElem.Values[configProperty.Name])) { 640if (!(((Values[configProperty.Name] == null || 641Values[configProperty.Name] == s_nullPropertyValue) && 642Object.Equals(compareToElem.Values[configProperty.Name], configProperty.DefaultValue)) || 643((compareToElem.Values[configProperty.Name] == null || 644compareToElem.Values[configProperty.Name] == s_nullPropertyValue) && 645Object.Equals(Values[configProperty.Name], configProperty.DefaultValue)))) 1015for (int index = 0; index < sourceElement.Values.Count; index++) { 1016string key = sourceElement.Values.GetKey(index); 1017object value = sourceElement.Values[index]; 1029ConfigurationValueFlags valueFlags = sourceElement.Values.RetrieveFlags(key); 1046object value = sourceElement.Values[prop.Name]; 1064value2 = parentElement.Values[prop.Name]; // if so get it's value 1078bool modified = sourceElement.Values.IsModified(prop.Name); 1079bool inherited = sourceElement.Values.IsInherited(prop.Name); 1773for (int index = 0; index < elem.Values.Count; index++) { 1774ConfigurationElement value = elem.Values[index] as ConfigurationElement;
System\Configuration\elementinformation.cs (3)
92_thisElement.Values.ChangeSourceInfo(_thisElement.ElementTagName, sourceInformation); 101PropertySourceInfo psi = _thisElement.Values.GetSourceInfo(_thisElement.ElementTagName); 121PropertySourceInfo psi = _thisElement.Values.GetSourceInfo(_thisElement.ElementTagName);
System\Configuration\PropertyInformation.cs (8)
81if (ThisElement.Values[PropertyName] == null) { 84if (ThisElement.Values.IsInherited(PropertyName)) { 97if (ThisElement.Values[PropertyName] == null) { 100if (ThisElement.Values.IsModified(PropertyName)) { 147PropertySourceInfo psi = ThisElement.Values.GetSourceInfo(PropertyName); 149psi = ThisElement.Values.GetSourceInfo(String.Empty); 168PropertySourceInfo psi = ThisElement.Values.GetSourceInfo(PropertyName); 170psi = ThisElement.Values.GetSourceInfo(String.Empty);
System\Configuration\ProviderSettings.cs (1)
96if ((Values.GetConfigValue(prop.Name).ValueFlags & ConfigurationValueFlags.Locked) == 0) {