Ejemplo n.º 1
0
 /// <summary>
 /// True if the microphone is muted (or sending audio isn't active).
 /// </summary>
 /// <returns></returns>
 public bool IsMute()
 {
     //check if call is created to ensure this isn't called before initialization
     if (mCall != null)
     {
         return(mCall.IsMute());
     }
     return(true);
 }