コード例 #1
0
ファイル: MediaHandlers.cs プロジェクト: ttorok/secret-sensa
 /// <summary>
 /// Detaches the media handlers from the phone call.
 /// </summary>
 public void DetachVideo()
 {
     if (videoCollection != null)
     {
         videoCollection.Detach();
     }
 }
コード例 #2
0
ファイル: MediaHandlers.cs プロジェクト: ttorok/secret-sensa
 /// <summary>
 /// Detaches the media handlers from the phone call.
 /// </summary>
 public void DetachAudio()
 {
     if (audioCollection != null)
     {
         audioCollection.Detach();
     }
 }