コード例 #1
0
 public Track get_track_info(string store_track_id)
 {
     IronPython.Runtime.PythonDictionary tmp = pyMobileclient.get_track_info(store_track_id);
     return(tmp.ToObject <Track>());
 }
コード例 #2
0
 public ArtistInfo get_artist_info(string artist_id, bool include_albums = true, int max_top_tracks = 5, int max_rel_artist = 5)
 {
     IronPython.Runtime.PythonDictionary tmp = pyMobileclient.get_artist_info(artist_id, include_albums, max_top_tracks, max_rel_artist);
     return(tmp.ToObject <ArtistInfo>());
 }
コード例 #3
0
 public AlbumInfo get_album_info(string album_id, bool include_tracks = true)
 {
     IronPython.Runtime.PythonDictionary tmp = pyMobileclient.get_album_info(album_id, include_tracks);
     return(tmp.ToObject <AlbumInfo>());
 }
コード例 #4
0
 public SearchResult search_all_access(string query, int max_results = 50)
 {
     IronPython.Runtime.PythonDictionary tmp = pyMobileclient.search_all_access(query, max_results);
     return(tmp.ToObject <SearchResult>());
 }