BudgetAnalyser.Uwp.ApplicationState.PersistApplicationStateAsXaml.PersistApplicationStateAsXaml C# (CSharp) Method

PersistApplicationStateAsXaml() public method

Initializes a new instance of the PersistApplicationStateAsXaml class.
userMessageBox cannot be null.
public PersistApplicationStateAsXaml ( [ logger, [ folders ) : System
logger [
folders [
return System
        public PersistApplicationStateAsXaml([NotNull] ILogger logger, [NotNull] IEnvironmentFolders folders)
        {
            if (logger == null) throw new ArgumentNullException(nameof(logger));
            if (folders == null) throw new ArgumentNullException(nameof(folders));
            this.logger = logger;
            this.folders = folders;
        }