// 关闭声音采集 public bool SDK_CloseSound() { bool ret = false; HCNetSDK.NET_DVR_CloseSound(); return(ret); }
// 关闭声音采集 public bool CloseSound() { try { return(HCNetSDK.NET_DVR_CloseSound()); } catch (Exception ex) { WriteLog("关闭声音采集" + ex.Message); return(false); } }
// 关闭声音采集 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); } }