public IEnumerable <string> GetSubCollectionNames(string collectionPath)
        {
            string collectionPath2 = Path.Combine(CurrentCollectionPath, collectionPath);

            return(from x in remoteSettingsStorage.GetSubCollectionNames(collectionPath2)
                   where !x.EndsWith("*")
                   select x);
        }