public async Task MuteUnmute()
 {
     try
     {
         await _controller.SetMute(!_chromecastService.ChromeCastClient.Volume.muted);
     }
     catch (Exception)
     {
     }
 }
示例#2
0
 public async Task MuteUnmute()
 {
     await _controller.SetMute(!_chromecastService.ChromeCastClient.Volume.muted);
 }