ASCOM.cam8_v07.Camera.StopExposure C# (CSharp) Method

StopExposure() public method

public StopExposure ( ) : void
return void
        public void StopExposure()
        {
            tl.LogMessage("StopExposure", "Aborting exposure, call cameraStopExposure from cam8ll07.dll");
            if (cameraStopExposure() == false)
            {
                tl.LogMessage("StopExposure", "PropertyNotImplementedException Stop Exposure failed");
                throw new ASCOM.PropertyNotImplementedException("Stop Exposure failed");
            }
        }