Gets time stamp for last successful MODBUS device access operation for the Tag instance
If an error occurs, the .Timestamp property will be uninitialized.
VB
Imports MBLink
Dim MBDevice As New Controller("192.168.1.45")
Dim MyTag As New Tag("40001")
MBDevice.ReadTag(MyTag)
Console.WriteLine(MyTag.Timestamp.ToString())
C#
using MBLink;
Controller MBDevice = new Controller("192.168.1.45");
Tag MyTag = new Tag("40001");
MBDevice.ReadTag(MyTag);
Console.WriteLine(MyTag.Timestamp.ToString());