Beispiel #1
0
 /// <summary>
 /// Set to true to mute the microphone.
 /// </summary>
 /// <param name="state"></param>
 public void SetMute(bool state)
 {
     //check if call is created to ensure this isn't called before initialization
     if (mCall != null)
     {
         mCall.SetMute(state);
     }
 }