I'm working with my new app for Windows phone and using Nokia music api which is now Nokia mix radio api. There are many changes in it and MusicClientAsync is no longer functional.
I want to get list of top artist in user region. I'm trying to use following code but it is showing an error and I'm not able to find any documentation.
private void Button_Click_1(object sender, RoutedEventArgs e)
{
MusicClient client = new MusicClient(MyAppId);
ListResponse{<MusicItem>} result = await client.GetTopArtistsAsync();
}