Gurux.DLMS.Objects.GXDLMSObject.GetLastReadTime C# (CSharp) Méthode

GetLastReadTime() public méthode

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