1 write to _thisElement
System.Configuration.ConfigurationManager (1)
System\Configuration\PropertyInformation.cs (1)
18_thisElement = thisElement;
18 references to _thisElement
System.Configuration.ConfigurationManager (18)
System\Configuration\PropertyInformation.cs (18)
21private ConfigurationProperty Prop => _prop ??= _thisElement.Properties[Name]; 32get { return _thisElement[Name]; } 33set { _thisElement[Name] = value; } 42if (_thisElement.Values[Name] == null) return PropertyValueOrigin.Default; 43return _thisElement.Values.IsInherited(Name) ? PropertyValueOrigin.Inherited : PropertyValueOrigin.SetHere; 47public bool IsModified => _thisElement.Values[Name] != null && _thisElement.Values.IsModified(Name); 54((_thisElement.LockedAllExceptAttributesList != null) && 55!_thisElement.LockedAllExceptAttributesList.DefinedInParent(Name)) || 56((_thisElement.LockedAttributesList != null) && 57(_thisElement.LockedAttributesList.DefinedInParent(Name) || 58_thisElement.LockedAttributesList.DefinedInParent(LockAll))) || 59(((_thisElement.ItemLocked & ConfigurationValueFlags.Locked) != 0) && 60((_thisElement.ItemLocked & ConfigurationValueFlags.Inherited) != 0)); 67PropertySourceInfo psi = _thisElement.Values.GetSourceInfo(Name) ?? 68_thisElement.Values.GetSourceInfo(string.Empty); 80PropertySourceInfo psi = _thisElement.Values.GetSourceInfo(Name) ?? 81_thisElement.Values.GetSourceInfo(string.Empty);