Click or drag to resize

ICameraV3FastReadout Property

Gets or sets Fast Readout Mode

Namespace:  ASCOM.DeviceInterface
Assembly:  ASCOM.DeviceInterfaces (in ASCOM.DeviceInterfaces.dll) Version: 3351c4f3fa64146a7efd5b51ed4591e32a0a5484
Syntax
bool FastReadout { get; set; }

Property Value

Type: Boolean
true for fast readout mode, false for normal mode
Exceptions
ExceptionCondition
PropertyNotImplementedExceptionThrown if CanFastReadout is false.
NotConnectedExceptionIf the device is not connected
DriverExceptionAn error occurred that is not described by one of the more specific ASCOM exceptions. Include sufficient detail in the message text to enable the issue to be accurately diagnosed by someone other than yourself.
Remarks

Must throw a PropertyNotImplementedException if CanFastReadout is false or return a boolean value if CanFastReadout is true.

Must thrown an exception if no connection is established to the camera. Must throw a PropertyNotImplementedException if CanFastReadout returns false.

Many cameras have a "fast mode" intended for use in focusing. When set to true, the camera will operate in Fast mode; when set false, the camera will operate normally. This property, if implemented, should default to False.

Please note that this function may in some cases interact with ReadoutModes; for example, there may be modes where the Fast/Normal switch is meaningless. In this case, it may be preferable to use the ReadoutModes function to control fast/normal switching.

If this feature is not available, then CanFastReadout must return false.

This is only available for the Camera Interface Version 2 and later.

See Also