System.Configuration.ConfigurationValues.GetSourceInfo C# (CSharp) Метод

GetSourceInfo() приватный Метод

private GetSourceInfo ( string key ) : PropertySourceInfo
key string
Результат PropertySourceInfo
        internal PropertySourceInfo GetSourceInfo(string key) {
            ConfigurationValue configurationValue = GetConfigValue(key);
            if (configurationValue != null) {
                return configurationValue.SourceInfo;
            }
            else {
                return null;
            }
        }