This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,24 @@
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
}
}