System.Configuration.ConfigurationValues.GetSourceInfo C# (CSharp) Method

GetSourceInfo() private method

private GetSourceInfo ( string key ) : PropertySourceInfo
key string
return PropertySourceInfo
        internal PropertySourceInfo GetSourceInfo(string key) {
            ConfigurationValue configurationValue = GetConfigValue(key);
            if (configurationValue != null) {
                return configurationValue.SourceInfo;
            }
            else {
                return null;
            }
        }