Exemple #1
0
        // 关闭声音采集
        public bool SDK_CloseSound()
        {
            bool ret = false;

            HCNetSDK.NET_DVR_CloseSound();
            return(ret);
        }
Exemple #2
0
 // 关闭声音采集
 public bool CloseSound()
 {
     try
     {
         return(HCNetSDK.NET_DVR_CloseSound());
     }
     catch (Exception ex)
     {
         WriteLog("关闭声音采集" + ex.Message);
         return(false);
     }
 }
Exemple #3
0
 // 关闭声音采集
 public int SDK_CloseSound(int lRealHandle)
 {
     try
     {
         bool ret = false;
         HCNetSDK.NET_DVR_CloseSound();
         if (!ret)
         {
             return(-1);
         }
         return(0);
     }
     catch (Exception ex)
     {
         WriteLog("关闭声音采集失败:" + ex.Message);
         return(-1);
     }
 }