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