1 write to _thisElement
System.Configuration.ConfigurationManager (1)
System\Configuration\ElementInformation.cs (1)
16
_thisElement
= thisElement;
19 references to _thisElement
System.Configuration.ConfigurationManager (19)
System\Configuration\ElementInformation.cs (19)
20
=> _internalProperties ??= new PropertyInformationCollection(
_thisElement
);
22
public bool IsPresent =>
_thisElement
.ElementPresent;
24
public bool IsLocked => ((
_thisElement
.ItemLocked & ConfigurationValueFlags.Locked) != 0) &&
25
((
_thisElement
.ItemLocked & ConfigurationValueFlags.Inherited) != 0);
31
ConfigurationElementCollection collection =
_thisElement
as ConfigurationElementCollection;
32
if ((collection == null) && (
_thisElement
.Properties.DefaultCollectionProperty != null))
36
_thisElement
[
_thisElement
.Properties.DefaultCollectionProperty] as
44
public string Source =>
_thisElement
.Values.GetSourceInfo(
_thisElement
.ElementTagName)?.FileName;
49
public int LineNumber =>
_thisElement
.Values.GetSourceInfo(
_thisElement
.ElementTagName)?.LineNumber ?? 0;
51
public Type Type =>
_thisElement
.GetType();
53
public ConfigurationValidatorBase Validator =>
_thisElement
.ElementProperty.Validator;
60
return
_thisElement
.PropertyInfoInternal(
_thisElement
.ElementTagName);
65
_thisElement
.Values.ChangeSourceInfo(
_thisElement
.ElementTagName, sourceInformation);
72
ArrayList arrayList =
_thisElement
.GetErrorsList();