Example #1
0
        public static List <SongSource> GetSources(HttpWebResponse response)
        {
            StreamReader reader = new StreamReader(response.GetResponseStream());
            string       json   = reader.ReadToEnd();

            return(SongParsing.ParseSources(json));
        }
Example #2
0
        public static Song GetDetails(HttpWebResponse response)
        {
            StreamReader reader = new StreamReader(response.GetResponseStream());
            string       json   = reader.ReadToEnd();

            return(SongParsing.ParseDetails(json));
        }