IVideoIntegrationRate Property

Index into the SupportedIntegrationRates array for the selected camera integration rate.

Definition

Namespace: ASCOM.Common.DeviceInterfaces
Assembly: ASCOM.Common (in ASCOM.Common.dll) Version: 3.0.0-rc.1+86c25ce733aebb4d8b1b8a62e84770ea5e972bea
C#
int IntegrationRate { get; set; }

Property Value

Int32
Integer index for the current camera integration rate in the SupportedIntegrationRates string array.

Return Value

Int32
Index into the SupportedIntegrationRates array for the selected camera integration rate.

Remarks

IntegrationRate can be used to adjust the integration rate (exposure) of the camera, if supported. A 0-based array of strings - SupportedIntegrationRates, which correspond to different discrete integration rate settings supported by the camera will be returned. IntegrationRate must be set to an integer in this range.

The driver must default IntegrationRate to a valid value when integration rate is supported by the camera.

Exceptions

NotImplementedExceptionMust throw an exception if the camera supports only one integration rate (exposure) that cannot be changed.
InvalidValueExceptionMust throw an exception if not valid.
NotConnectedExceptionWhen Connected is False.
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.

Version Information

.NET Standard

Supported in: 2.0

See Also