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); 22public bool IsPresent => _thisElement.ElementPresent; 24public bool IsLocked => ((_thisElement.ItemLocked & ConfigurationValueFlags.Locked) != 0) && 25((_thisElement.ItemLocked & ConfigurationValueFlags.Inherited) != 0); 31ConfigurationElementCollection collection = _thisElement as ConfigurationElementCollection; 32if ((collection == null) && (_thisElement.Properties.DefaultCollectionProperty != null)) 36_thisElement[_thisElement.Properties.DefaultCollectionProperty] as 44public string Source => _thisElement.Values.GetSourceInfo(_thisElement.ElementTagName)?.FileName; 49public int LineNumber => _thisElement.Values.GetSourceInfo(_thisElement.ElementTagName)?.LineNumber ?? 0; 51public Type Type => _thisElement.GetType(); 53public ConfigurationValidatorBase Validator => _thisElement.ElementProperty.Validator; 60return _thisElement.PropertyInfoInternal(_thisElement.ElementTagName); 65_thisElement.Values.ChangeSourceInfo(_thisElement.ElementTagName, sourceInformation); 72ArrayList arrayList = _thisElement.GetErrorsList();