Chirp.Radio.Agent.AudioPlayer.GetNextTrack C# (CSharp) Method

GetNextTrack() private method

Implements the logic to get the next AudioTrack instance. In a playlist, the source can be from a file, a web request, etc.
The AudioTrack URI determines the source, which can be: (a) Isolated-storage file (Relative URI, represents path in the isolated storage) (b) HTTP URL (absolute URI) (c) MediaStreamSource (null)
private GetNextTrack ( ) : AudioTrack
return AudioTrack
        private AudioTrack GetNextTrack()
        {
            var uri = _streamUri;
            AudioTrack track = new AudioTrack(uri, "chrip", "radio", "", null, "", EnabledPlayerControls.Pause);
            return track;
            //return _track;
        }