예제 #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;
 }
예제 #2
0
파일: Song.cs 프로젝트: loonloon/CSharp
 /// <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;
 }
예제 #3
0
 public override System.Threading.Tasks.Task <bool> AddToLibrary(MusicPlayer.Models.RadioStation station)
 {
     throw new NotImplementedException();
 }
예제 #4
0
 public override System.Threading.Tasks.Task <bool> LoadRadioStation(MusicPlayer.Models.RadioStation station, bool isContinuation)
 {
     throw new NotImplementedException();
 }
예제 #5
0
 public override async Task <bool> AddToLibrary(MusicPlayer.Models.RadioStation station)
 {
     App.ShowNotImplmented();
     return(false);
 }
예제 #6
0
 public override async Task <bool> LoadRadioStation(MusicPlayer.Models.RadioStation station, bool isContinuation)
 {
     App.ShowNotImplmented();
     return(false);
 }