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

SetValue() public method

public SetValue ( string section, string key, string value ) : void
section string
key string
value string
return void
        public void SetValue(string section, string key, string value)
        {
            Argument.IsNotNullOrWhitespace(() => section);
            Argument.IsNotNullOrWhitespace(() => key);

            SetNuGetValues(section, new[] {new KeyValuePair<string, string>(key, value)});
        }