AForge.Robotics.TeRK.Qwerk.Video.WaitForStop C# (CSharp) Метод

WaitForStop() публичный Метод

Wait for video source has stopped.
Waits for video source stopping after it was signalled to stop using SignalToStop method.
public WaitForStop ( ) : void
Результат void
            public void WaitForStop( )
            {
                if ( thread != null )
                {
                    // wait for thread stop
                    thread.Join( );

                    Free( );
                }
            }