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)
21
private ConfigurationProperty Prop => _prop ??=
_thisElement
.Properties[Name];
32
get { return
_thisElement
[Name]; }
33
set {
_thisElement
[Name] = value; }
42
if (
_thisElement
.Values[Name] == null) return PropertyValueOrigin.Default;
43
return
_thisElement
.Values.IsInherited(Name) ? PropertyValueOrigin.Inherited : PropertyValueOrigin.SetHere;
47
public 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));
67
PropertySourceInfo psi =
_thisElement
.Values.GetSourceInfo(Name) ??
68
_thisElement
.Values.GetSourceInfo(string.Empty);
80
PropertySourceInfo psi =
_thisElement
.Values.GetSourceInfo(Name) ??
81
_thisElement
.Values.GetSourceInfo(string.Empty);