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

IsRead() public method

Is attribute read.
public IsRead ( int index ) : bool
index int Attribute index to read.
return bool
        virtual public bool IsRead(int index)
        {
            if (!CanRead(index))
            {
                return true;
            }
            //If value is changed or value is not read yet.
            return !(DirtyAttributes.ContainsKey(index) ||
                     GetLastReadTime(index) == DateTime.MinValue);
        }