ITelescopeV3UTCDate Property
The UTC date/time of the telescope's internal clock

Namespace: ASCOM.DeviceInterface
Assembly: ASCOM.DeviceInterfaces (in ASCOM.DeviceInterfaces.dll) Version: 6.0.0.0 (6.2.0.2774)
Syntax
DateTime UTCDate { get; set; }

Property Value

Type: DateTime
Exceptions
ExceptionCondition
PropertyNotImplementedExceptionIf UTCDate Write is not implemented.
InvalidValueExceptionIf an invalid DateTime is set.
InvalidOperationExceptionWhen UTCDate is read and the mount cannot provide this property itslef and a value has not yet be established by writing to the property.
Remarks

UTCDate Read must be implemented and must not throw a PropertyNotImplementedException.

UTCDate Write can throw a PropertyNotImplementedException.

The driver must calculate this from the system clock if the telescope has no accessible source of UTC time. In this case, the property must not be writeable (this would change the system clock!) and will instead raise an error. However, it is permitted to change the telescope's internal UTC clock if it is being used for this property. This allows clients to adjust the telescope's UTC clock as needed for accuracy. Reading the property will raise an error if the value has never been set or is otherwise unavailable.
See Also