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

GetNuGetValues() private method

private GetNuGetValues ( string section, bool isPath = false ) : IList
section string
isPath bool
return IList
        private IList<SettingValue> GetNuGetValues(string section, bool isPath = false)
        {
            Argument.IsNotNullOrWhitespace(() => section);

            var valuesListKey = GetSectionValuesListKey(section);
            var valueKeysString = _configurationService.GetRoamingValue<string>(valuesListKey);
            if (string.IsNullOrEmpty(valueKeysString))
            {
                return null;
            }
            var keys = valueKeysString.Split(Separator);

            return keys.Select(key => GetNuGetValue(section, key, isPath)).ToList();
        }

Same methods

NuGetSettings::GetNuGetValues ( string section, string subsection, bool isPath = false ) : IList