public void Mute(bool muted)
 {
     try
     {
         CurrentAudioTrack?.Enable(!muted);
     }
     catch (Exception e)
     {
         Methods.DisplayReportResultTrack(e);
     }
 }
Beispiel #2
0
 public void Mute(bool muted)
 {
     try
     {
         CurrentAudioTrack?.Enable(!muted);
     }
     catch (Exception e)
     {
         Console.WriteLine(e);
     }
 }
Beispiel #3
0
 public void Mute(bool muted)
 {
     CurrentAudioTrack?.Enable(!muted);
 }