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

GetNestedValues() public method

public GetNestedValues ( string section, string subsection ) : IList
section string
subsection string
return IList
        public IList<SettingValue> GetNestedValues(string section, string subsection)
        {
            Argument.IsNotNullOrWhitespace(() => section);
            Argument.IsNotNullOrWhitespace(() => subsection);

            return GetNuGetValues(section, subsection);
        }