Exemple #1
0
 /// <summary>
 /// Detaches the media handlers from the phone call.
 /// </summary>
 public void DetachVideo()
 {
     if (videoCollection != null)
     {
         videoCollection.Detach();
     }
 }
Exemple #2
0
 /// <summary>
 /// Detaches the media handlers from the phone call.
 /// </summary>
 public void DetachAudio()
 {
     if (audioCollection != null)
     {
         audioCollection.Detach();
     }
 }