6 instantiations of PropertySourceInfo
System.Configuration (6)
System\Configuration\ConfigurationElement.cs (6)
1445PropertySourceInfo rootInfo = new PropertySourceInfo(reader); 1478new PropertySourceInfo(reader)); 1490LockedAttributesList = new ConfigurationValue(reader.Value, ConfigurationValueFlags.Default, new PropertySourceInfo(reader)); 1493LockedAllExceptList = new ConfigurationValue(reader.Value, ConfigurationValueFlags.Default, new PropertySourceInfo(reader)); 1496LockedElementList = new ConfigurationValue(reader.Value, ConfigurationValueFlags.Default, new PropertySourceInfo(reader)); 1499LockedAllElementsExceptList = new ConfigurationValue(reader.Value, ConfigurationValueFlags.Default, new PropertySourceInfo(reader));
23 references to PropertySourceInfo
System.Configuration (23)
System\Configuration\ConfigurationElement.cs (10)
581PropertySourceInfo sourceInfo = (ConfigValue != null) ? ConfigValue.SourceInfo : null; 951internal PropertySourceInfo PropertyInfoInternal(string propertyName) { 952return (PropertySourceInfo)_values.GetSourceInfo(propertyName); 956PropertySourceInfo p = (PropertySourceInfo)PropertyInfoInternal(propertyName); 958p = (PropertySourceInfo)PropertyInfoInternal(String.Empty); // Get the filename of the parent if prop is not there 965PropertySourceInfo p = (PropertySourceInfo)PropertyInfoInternal(propertyName); 967p = (PropertySourceInfo)PropertyInfoInternal(String.Empty); 1445PropertySourceInfo rootInfo = new PropertySourceInfo(reader);
System\Configuration\ConfigurationValue.cs (2)
27internal PropertySourceInfo SourceInfo; 29internal ConfigurationValue(object value, ConfigurationValueFlags valueFlags, PropertySourceInfo sourceInfo) {
System\Configuration\ConfigurationValues.cs (4)
67internal PropertySourceInfo GetSourceInfo(string key) { 77internal void ChangeSourceInfo(string key, PropertySourceInfo sourceInfo) { 84private ConfigurationValue CreateConfigValue(object value, ConfigurationValueFlags valueFlags, PropertySourceInfo sourceInfo) { 99internal void SetValue(string key, object value, ConfigurationValueFlags valueFlags, PropertySourceInfo sourceInfo) {
System\Configuration\elementinformation.cs (4)
87internal PropertySourceInfo PropertyInfoInternal() { 91internal void ChangeSourceAndLineNumber(PropertySourceInfo sourceInformation) { 101PropertySourceInfo psi = _thisElement.Values.GetSourceInfo(_thisElement.ElementTagName); 121PropertySourceInfo psi = _thisElement.Values.GetSourceInfo(_thisElement.ElementTagName);
System\Configuration\MgmtConfigurationRecord.cs (1)
555PropertySourceInfo saveInfo = configSection.ElementInformation.PropertyInfoInternal();
System\Configuration\PropertyInformation.cs (2)
147PropertySourceInfo psi = ThisElement.Values.GetSourceInfo(PropertyName); 168PropertySourceInfo psi = ThisElement.Values.GetSourceInfo(PropertyName);