Hi,
Is there a way to fetch the global (not for a specific alarm) list of priorities associated to alarms (e.g. High, Medium, Low) from MIP SDK, both PriorityInt and PriorityName members ?
Thanks
Hi,
Is there a way to fetch the global (not for a specific alarm) list of priorities associated to alarms (e.g. High, Medium, Low) from MIP SDK, both PriorityInt and PriorityName members ?
Thanks
Hi,
I can suggest to read all the alarm lines like you can see in AlarmEventViewer sample:
AlarmLine[] alarms = alarmClient.GetAlarmLines(…)
Then go through foreach AlarmLine in alarms and read Priority and PriorityName properties.