Ejemplo n.º 1
0
        public void ClearUnseenTracks(Playlist playList)
        {
            int ret = LibSpotify.sp_playlistcontainer_clear_unseen_tracks_r(Handle, playList.Handle);

            if (ret == -1)
            {
                throw new InvalidOperationException("failed to clear unseen tracks"); // why?
            }
        }