public void AddConfigSection(ConfigSection configSection) { if (FindConfigSection(configSection) != null) throw new ArgumentException("Can not add a section that already exists: " + configSection.SectionName); ConfigSections.Add(configSection); }
public bool Equals(ConfigSection other) { StringComparison sc; if (SubSectionCaseSensitive) sc = StringComparison.Ordinal; else sc = StringComparison.OrdinalIgnoreCase; return string.Equals(SectionName, other.SectionName, StringComparison.OrdinalIgnoreCase) && string.Equals(SubSection, other.SubSection, sc); }
private ConfigSection FindOrCreateConfigSection(string name) { var configSectionToFind = new ConfigSection(name); foreach (var configSection in _sections) { if (configSection.SectionName == configSectionToFind.SectionName && configSection.SubSection == configSectionToFind.SubSection) return configSection; } _sections.Add(configSectionToFind); return configSectionToFind; }
private ConfigSection FindConfigSection(string name) { var configSectionToFind = new ConfigSection(name); foreach (var configSection in _sections) { if (configSection.SectionName == configSectionToFind.SectionName && configSection.SubSection == configSectionToFind.SubSection) return configSection; } return null; }
public ConfigSection FindConfigSection(string name) { var configSectionToFind = new ConfigSection(name, true); return ConfigSections.FirstOrDefault(configSectionToFind.Equals); }
private void NewSection() { _section = new ConfigSection(token.ToString(), false); _configFile.ConfigSections.Add(_section); token.Clear(); }
public ConfigSection FindConfigSection(string name) { var configSectionToFind = new ConfigSection(name, true); return(ConfigSections.FirstOrDefault(configSectionToFind.Equals)); }
private ConfigSection FindOrCreateConfigSection(string name) { var result = FindConfigSection(name); if (result == null) { result = new ConfigSection(name, true); _sections.Add(result); } return result; }
private ConfigSection FindConfigSection(ConfigSection configSectionToFind) { foreach (var configSection in ConfigSections) { if (configSectionToFind.Equals(configSection)) return configSection; } return null; }
public ConfigSection FindConfigSection(string name) { var configSectionToFind = new ConfigSection(name, true); return FindConfigSection(configSectionToFind); }
public string GetPathValue(string setting) { return(ConfigSection.UnescapeString(GetStringValue(setting))); }
public void AddPathValue(string setting, string value) { AddStringValue(setting, ConfigSection.EscapeString(value)); }
public void SetPathValue(string setting, string value) { SetStringValue(setting, ConfigSection.EscapeString(value)); }
public static ReleaseVersion FromSection(ConfigSection section) { Version ver; try { ver = new Version(section.SubSection); } catch (Exception e) { System.Diagnostics.Debug.WriteLine(e); return null; } return new ReleaseVersion() { Version = ver, ReleaseType = section.GetValue("ReleaseType"), DownloadPage = section.GetValue("DownloadPage") }; }
public void SetPathValue(string setting, string value) { SetStringValue(setting, ConfigSection.FixPath(value)); }
private ConfigSection FindConfigSection(string name) { var configSectionToFind = new ConfigSection(name, true); foreach (var configSection in _sections) { if (configSectionToFind.Equals(configSection)) return configSection; } return null; }
public IConfigSection FindConfigSection(string name) { var configSectionToFind = new ConfigSection(name, true); return(FindConfigSection(configSectionToFind)); }
private void FindSections(IEnumerable<string> fileLines) { ConfigSection configSection = null; foreach (var line in fileLines) { var m = RegParseIsSection.Match(line); if (m.Success) //this line is a section { var name = m.Groups["SectionName"].Value; configSection = new ConfigSection(name, false); _sections.Add(configSection); } else { m = RegParseIsKey.Match(line); if (m.Success) //this line is a key { var key = m.Groups["Key"].Value; var value = m.Groups["Value"].Value; if (configSection == null) throw new Exception( string.Format("Key {0} in configfile {1} is not in a section.", key, _fileName)); configSection.AddValue(key, value); } } } }
public static void SetValueAsBool(this ConfigSection section, string name, bool value) { section.SetValue(name, value.ToString()); }