BudgetAnalyser.Uwp.ApplicationState.ApplicationStateRequestedMessage.PersistThisModel C# (CSharp) Method

PersistThisModel() public method

Each subscriber can call this method to include any data it wishes to persist. This data is intended to be user state metadata. It is not intended to be used for wholesale application database data.
Attempt to save application state with a model that has already been saved.
public PersistThisModel ( IPersistentApplicationStateObject model ) : void
model IPersistentApplicationStateObject /// The model to persist. The type of this model will be used as a key and when data is loaded back from persistent storage this key (type) will be used /// to retrieve it. No other component should use this type, or collisions will occur. ///
return void
        public void PersistThisModel(IPersistentApplicationStateObject model)
        {
            if (this.modelsToPersist.Any(m => m.GetType() == model.GetType()))
            {
                throw new DuplicateNameException("Attempt to save application state with a model that has already been saved.");
            }

            this.modelsToPersist.Add(model);
        }
    }
ApplicationStateRequestedMessage