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