AForge.Video.Ximea.XimeaVideoSource.Free C# (CSharp) 메소드

Free() 개인적인 메소드

private Free ( ) : void
리턴 void
        private void Free( )
        {
            lock ( sync )
            {
                thread = null;

                // release events
                if ( stopEvent != null )
                {
                    stopEvent.Close( );
                    stopEvent = null;
                }

                camera.Close( );
            }
        }