Beispiel #1
0
 private bool CanAddToPlaylist(StreamableStatus status)
 {
     if (!status.ready)
     {
         Send("The playback device is still receiving another track. This action cannot be completed right now, please try again later.");
     }
     return(status.ready);
 }
Beispiel #2
0
 private bool CanSetPlaylist(StreamableStatus status)
 {
     if (!status.exists)
     {
         Send("The playback device has disconnected. Please choose another playback device.");
     }
     return(status.exists);
 }