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

StopExposure() public method

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