public static bool GetValueAsBool(this IConfigSection section, string name, bool defaultValue) { bool result = defaultValue; if (section.HasValue(name)) { string value = section.GetValue(name); bool.TryParse(value, out result); } return(result); }