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

UpdateDirty() private méthode

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