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

GetPreviousTrack() private method

Implements the logic to get the previous AudioTrack instance.
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 GetPreviousTrack ( ) : AudioTrack
return AudioTrack
        private AudioTrack GetPreviousTrack()
        {
            var uri = _streamUri;
            AudioTrack track = new AudioTrack(uri, "chrip", "radio", "none", null, "", EnabledPlayerControls.Pause);
            return track;
            //return _track;
        }