Files
2026-04-10 22:50:51 +02:00

25 lines
985 B
C#

using System;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Determines which properties are written out to a configuration file.</summary>
// Token: 0x02000007 RID: 7
[Token(Token = "0x2000007")]
public enum ConfigurationSaveMode
{
/// <summary>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.</summary>
// Token: 0x04000007 RID: 7
[Token(Token = "0x4000007")]
Full = 2,
/// <summary>Causes only properties that differ from inherited values to be written to the configuration file.</summary>
// Token: 0x04000008 RID: 8
[Token(Token = "0x4000008")]
Minimal = 1,
/// <summary>Causes only modified properties to be written to the configuration file, even when the value is the same as the inherited value.</summary>
// Token: 0x04000009 RID: 9
[Token(Token = "0x4000009")]
Modified = 0
}
}