Exemplo n.º 1
0
 public static void StartBFCPContent()
 {
     if (null != callManager.CurrentCall)
     {
         var errno = WrapperProxy.StartBFCPContent(callManager.CurrentCall.CallHandle);
         if (ErrorNumber.OK != errno)
         {
             throw new Exception("开始共享内容失败,errno=" + errno);
         }
     }
     else
     {
         throw new Exception("当前呼叫为空,不能共享内容");
     }
 }