Ejemplo n.º 1
0
 /// <summary>
 /// Allows to control the replay volume of the
 /// remote connection.
 /// </summary>
 /// <param name="volume">
 /// Usually between 0 and 1
 /// </param>
 public virtual void SetRemoteVolume(float volume)
 {
     if (mCall == null)
     {
         return;
     }
     if (mRemoteUserId == ConnectionId.INVALID)
     {
         return;
     }
     mCall.SetVolume(volume, mRemoteUserId);
 }