We are trying to get functional status of equipments by using the following:
Once connected to the server is detected we retrieve all items by using this:
Configuration.Instance.GetItems(ItemHierarchy.UserDefined)
we filter those of Kind.Camera
and using ItemManager we call
this._itemManager.GetOperationalState(camera);
for every item.
This function is returning for every equipment “Ok” status although we know the equipments should be not Ok at all (as those equipment do not exist).
we found no examples in the components list for this function. Does it mean that it cannot be used in a .NET solution?