I'm trying to synchronously read a node from the OPC server using the example as given in the documentation.
OpcDaItemValue[] values = group.Read(group.Items, OpcDaDataSource.Device);
My issue is that it works on a regular basis but after a period of time I start getting the exception:
Value does not fall within the expected range.
I have a while loop that reads the node synchronously every minute, would that be a potential issue?
Any information is appreciated.