Click or drag to resize

ITelescopeV3AxisRates Method

Determine the rates at which the telescope may be moved about the specified axis by the MoveAxis(TelescopeAxes, Double) method.

Namespace: ASCOM.DeviceInterface
Assembly: ASCOM.DeviceInterfaces (in ASCOM.DeviceInterfaces.dll) Version: 6.0.0.0 (6.6.9999.9999)
Syntax
IAxisRates AxisRates(
	TelescopeAxes Axis
)

Parameters

Axis  TelescopeAxes
The axis about which rate information is desired (TelescopeAxes value)

Return Value

IAxisRates
Collection of IRate rate objects
Exceptions
ExceptionCondition
InvalidValueExceptionIf an invalid Axis is specified.
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 be implemented, must not throw a MethodNotImplementedException.

See the description of MoveAxis(TelescopeAxes, Double) for more information. This method must return an empty collection if MoveAxis(TelescopeAxes, Double) is not supported.

This is only available for telescope InterfaceVersions 2 and later.

Please note that the rate objects must contain absolute non-negative values only. Applications determine the direction by applying a positive or negative sign to the rates provided. This obviates the need for the driver to to present a duplicate set of negative rates as well as the positive rates.

See Also