示例#1
0
 /// <summary>
 /// UnLocks the current selected participant from the video gallery
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void buttonUnLockVideo_Click(object sender, EventArgs e)
 {
     try
     {
         participant.BeginUnLockVideo(UnLockVideoCallback, null);
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message);
     }
 }