Accord.Video.AsyncVideoSource.Stop C# (CSharp) Method

Stop() public method

Stop video source.

Stops nested video source by calling its IVideoSource.Stop method. See documentation of the particular video source for additional details.

public Stop ( ) : void
return void
        public void Stop()
        {
            nestedVideoSource.Stop();
            Free();
        }