Esempio n. 1
0
        public static Collection <PartialMatche> Search(string strAlbum)
        {
            Uri      strUrl       = new Uri(string.Format(@"http://ws.audioscrobbler.com/2.0/?method=album.search&album={0}&api_key=7e1cb1060b6150e4fbb60e119250f54c", Util.EncodeSearch(strAlbum)));
            XElement restResponse = XElement.Parse(Util.GetRest(strUrl));

            return(LastFm.AlbumToPartialMatch(restResponse));
        }