Gets time stamp for last successful PLC access operation for the Tag instance
If an error occurs, the .Timestamp property will be uninitialized.
VB
Dim MyPLC As New GELink.Controller("192.168.1.45")
Dim MyTag As New GELink.Tag("%R1")
MyPLC.ReadTag(MyTag)
Console.WriteLine(MyTag.Timestamp.ToString())
C#
GELink.Controller MyPLC = new GELink.Controller("192.168.1.45");
GELink.Tag MyTag = new GELink.Tag("%R1");
MyPLC.ReadTag(MyTag);
Console.WriteLine(MyTag.Timestamp.ToString());