ISafetyMonitorV4SafetyEvents Property

Returns a list of safety events

Definition

Namespace: SafetyMonitorExtension
Assembly: SafetyMonitoExtension (in SafetyMonitoExtension.dll) Version: 0.1+d75ea7ab874235e354c93329218ac96a84f66202
C#
IEnumerable<SafetyEvent> SafetyEvents { get; }

Return Value

IEnumerableSafetyEvent

An enumerable collection of SafetyEvent objects.

Must return an empty collection when no events are active (must not return null).

Remarks

This is a mandatory property and must be functionally implemented.

The returned list must only contain entries with unique Id values.

See Action Implementation Notes for information on how clients, Alpaca devices and drivers should implement this method.

Exceptions

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.

See Also