Example #1
0
 public void StopExposure()
 {
     if (MyDriverType == 0)
     {
         MySSCamera.StopExposure();
     }
     else
     {
         tl.LogMessage("StopExposure", "Not implemented");
         throw new MethodNotImplementedException("StopExposure");
     }
 }
Example #2
0
 public void StopExposure()
 {
     CheckConnected();
     m_camera.StopExposure();
 }