예제 #1
0
파일: Tag.cs 프로젝트: kishor83/opcuagw
 //we will not use property for this to avoid serialization
 public DateTime GetTimestamp()
 {
     return(UnixEpoch.FromUnixTime(this._timestamp));
 }
예제 #2
0
파일: Tag.cs 프로젝트: kishor83/opcuagw
 //we will not use property for this to avoid serialization
 public void SetTimestamp(DateTime timestamp)
 {
     this._timestamp = UnixEpoch.ToUnixTime(timestamp);
 }