CgwMonitorManage.Common.VideoPipe.Stop C# (CSharp) 메소드

Stop() 공개 메소드

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