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

UpdateDirty() private method

private UpdateDirty ( int attributeIndex, object value ) : void
attributeIndex int
value object
return void
        public void UpdateDirty(int attributeIndex, object value)
        {
            DirtyAttributes[attributeIndex] = value;
            if (OnChange != null)
            {
                OnChange(this, true, attributeIndex, value);
            }
        }