Banshee.Streaming.RadioTrackInfo.PlayNextStream C# (CSharp) Method

PlayNextStream() public method

public PlayNextStream ( ) : bool
return bool
        public bool PlayNextStream()
        {
            if(stream_index < stream_uris.Count - 1) {
                stream_index++;
                Play();
                return true;
            }
            ServiceManager.PlaybackController.StopWhenFinished = true;
            return false;
        }