System.Configuration.ConfigurationValues.IsInherited C# (CSharp) Méthode

IsInherited() private méthode

private IsInherited ( string key ) : bool
key string
Résultat bool
        internal bool IsInherited(string key) {
            ConfigurationValue configurationValue = (ConfigurationValue)BaseGet(key);
            if (configurationValue != null) {
                return ((configurationValue.ValueFlags & ConfigurationValueFlags.Inherited) != 0);
            }
            else {
                return false;
            }

        }