ReviewNotifier.ReviewNotifierConfiguration.Save C# (CSharp) Method

Save() public method

public Save ( ) : void
return void
        public void Save()
        {
            if (_config == null || _section == null)
                throw new InvalidOperationException("Configuration has not yet been loaded, cannot save.");

            if (_config.Sections.Get(_sectionName) == null)
                _config.Sections.Add(_sectionName, _section);

            _config.Save(ConfigurationSaveMode.Minimal);
        }