Esempio n. 1
0
 /// <summary>
 /// Initializes the song information from a radio station.
 /// </summary>
 /// <param name="radio">The internet radio station.</param>
 public SongInformation(RadioStation radio)
 {
     this.Location        = radio.Url;
     this.Title           = radio.Name;
     this.Genre           = radio.Genre;
     this.ImageUrl        = radio.ImageUrl;
     this.IsInternetRadio = true;
     this.IsResolved      = true;
     this.Position        = 0;
 }
Esempio n. 2
0
 /// <summary>
 /// Initializes the song information from a radio station.
 /// </summary>
 /// <param name="radio">The internet radio station.</param>
 public SongInformation(RadioStation radio)
 {
     Location        = radio.Url;
     Title           = radio.Name;
     Genre           = radio.Genre;
     ImageUrl        = radio.ImageUrl;
     IsInternetRadio = true;
     IsResolved      = true;
     Position        = 0;
 }
Esempio n. 3
0
 public override System.Threading.Tasks.Task <bool> AddToLibrary(MusicPlayer.Models.RadioStation station)
 {
     throw new NotImplementedException();
 }
Esempio n. 4
0
 public override System.Threading.Tasks.Task <bool> LoadRadioStation(MusicPlayer.Models.RadioStation station, bool isContinuation)
 {
     throw new NotImplementedException();
 }
Esempio n. 5
0
 public override async Task <bool> AddToLibrary(MusicPlayer.Models.RadioStation station)
 {
     App.ShowNotImplmented();
     return(false);
 }
Esempio n. 6
0
 public override async Task <bool> LoadRadioStation(MusicPlayer.Models.RadioStation station, bool isContinuation)
 {
     App.ShowNotImplmented();
     return(false);
 }