Attr | (Long) The sum of following values specifies the transfer method: (see OPC DA Basic terms)
1 - The data from the DEVICE, otherwise from the CACHE. If DEVICE is entered, then Read method will surely execute communication with the device. Therefore it can be slower then reading from CACHE, but it is for sure that the most recent values were read.
2 - Synchronous access, otherwise asynchronous. The synchronous access comes handy if immediately after calling the Read method it is needed to have the read data set on the "Data" tab. The main disadvantage is that Read method can take longer time (because of waiting for data receive) slowing down the whole application.
The asynchronous access the transmission impulse is done, but the data can be received later, therefore immediately after terminating Read method the data may not be set yet. |
---|---|
From | (Long) Index of the first value (zero-based index). |
To | (Long) Index of the last value (zero-based index). -1 = to the end. |
var oOpcGroup = pMe.Pm("/OpcClient/Group1");
if (oOpcGroup.Read(2, 4, 7))
{
// ...
}