ChobiQ.DoubanFMAPICodePack.DoubanFMClient.Next C# (CSharp) Method

Next() public method

Notifies server that current song plays to end, then play next song.
public Next ( ) : void
return void
        public void Next()
        {
            var song = DequeueToHistory(PlayOperation.PlaysToEnd);

            PlaylistRequest request = new PlaylistRequest(
                _status, _history, PlayOperation.PlaysToEnd, CurrentChannel,
                song);

            request.GetResponse();
        }