Gurux.DLMS.Objects.GXDLMSObject.GetLastReadTime C# (CSharp) Method

GetLastReadTime() public method

Returns time when attribute was last time read.
public GetLastReadTime ( int attributeIndex ) : System.DateTime
attributeIndex int Attribute index.
return System.DateTime
        public DateTime GetLastReadTime(int attributeIndex)
        {
            if (!ReadTimes.ContainsKey(attributeIndex))
            {
                return DateTime.MinValue;
            }
            return ReadTimes[attributeIndex];
        }