示例#1
0
 private void StartListening(out bool wasMuted)
 {
     _commandInProgress = true;
     wasMuted           = VolumeHelper.IsMuted();
     if (!wasMuted)
     {
         VolumeHelper.Mute();
     }
 }
示例#2
0
 public void VolumeMuteOn(Context context, Result result)
 {
     VolumeHelper.Mute();
     result.SendResponse("как вам угодно");
 }