using System; using Cpp2IlInjected; namespace System.Configuration { /// Determines which properties are written out to a configuration file. // Token: 0x02000007 RID: 7 [Token(Token = "0x2000007")] public enum ConfigurationSaveMode { /// Causes all properties to be written to the configuration file. This is useful mostly for creating information configuration files or moving configuration values from one machine to another. // Token: 0x04000007 RID: 7 [Token(Token = "0x4000007")] Full = 2, /// Causes only properties that differ from inherited values to be written to the configuration file. // Token: 0x04000008 RID: 8 [Token(Token = "0x4000008")] Minimal = 1, /// Causes only modified properties to be written to the configuration file, even when the value is the same as the inherited value. // Token: 0x04000009 RID: 9 [Token(Token = "0x4000009")] Modified = 0 } }