7 references to GetSourceInfo
System.Configuration.ConfigurationManager (7)
System\Configuration\ConfigurationElement.cs (1)
850return Values.GetSourceInfo(propertyName);
System\Configuration\ElementInformation.cs (2)
44public string Source => _thisElement.Values.GetSourceInfo(_thisElement.ElementTagName)?.FileName; 49public int LineNumber => _thisElement.Values.GetSourceInfo(_thisElement.ElementTagName)?.LineNumber ?? 0;
System\Configuration\PropertyInformation.cs (4)
67PropertySourceInfo psi = _thisElement.Values.GetSourceInfo(Name) ?? 68_thisElement.Values.GetSourceInfo(string.Empty); 80PropertySourceInfo psi = _thisElement.Values.GetSourceInfo(Name) ?? 81_thisElement.Values.GetSourceInfo(string.Empty);