Orc.NuGetExplorer.NuGetSettings.SetValues C# (CSharp) Method

SetValues() public method

public SetValues ( string section, IList values ) : void
section string
values IList
return void
        public void SetValues(string section, IList<SettingValue> values)
        {
            foreach (var value in values)
            {
                SetValue(section, value.Key, value.Value);
            }
        }

Same methods

NuGetSettings::SetValues ( string section, string>.IList values ) : void