CgwMonitorManage.Common.VideoPipe.Stop C# (CSharp) Method

Stop() public method

回调函数 停止管道
public Stop ( ) : void
return void
        public void Stop()
        {
            NLogEx.LoggerEx logEx = new NLogEx.LoggerEx(log);
            try
            {
                if (pipedStream == null)
                {
                    return;
                }
                ShutdownPipedStream();
            }
            catch (Exception ex)
            {
                logEx.Error(ex.ToString());
            }
        }