System.Configuration.BaseConfigurationRecord.IsReservedAttributeName C# (CSharp) 메소드

IsReservedAttributeName() 정적인 개인적인 메소드

static private IsReservedAttributeName ( string name ) : bool
name string
리턴 bool
        internal static bool IsReservedAttributeName(string name) {
            if (StringUtil.StartsWith(name, "config") ||
                StringUtil.StartsWith(name, "lock")) {
                return true;
            }
            else {
                return false;
            }
        }
BaseConfigurationRecord