System.Configuration.ConfigurationValues.IsInherited C# (CSharp) 메소드

IsInherited() 개인적인 메소드

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

        }