public int InsertConvHistoryPart(string _historyID, string _partAccount, string _partName)//插入会议历史记录的与会人
 {
     try
     {
         LogManager.SystemLog.Debug(string.Format("Start UC_SDK_InsertConvHistoryPart"));
         int iRet = UCInterface.UC_SDK_InsertConvHistoryPart(_historyID, _partAccount, _partName);
         if (iRet != 0)
         {
             LogManager.SystemLog.Error(string.Format("Start UC_SDK_InsertConvHistoryPart error {0}", iRet));
             return(iRet);
         }
         LogManager.SystemLog.Debug(string.Format("End UC_SDK_InsertConvHistoryPart"));
         return(iRet);
     }
     catch (System.Exception ex)
     {
         LogManager.SystemLog.Error(ex.ToString());
         return(-1);
     }
 }