Orc.NuGetExplorer.NuGetSettings.SetValues C# (CSharp) Méthode

SetValues() public méthode

public SetValues ( string section, IList values ) : void
section string
values IList
Résultat 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