This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
using System;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Specifies the special setting category of a application settings property.</summary>
// Token: 0x020003D9 RID: 985
[Token(Token = "0x20003D9")]
public enum SpecialSetting
{
/// <summary>The configuration property represents a connection string, typically for a data store or network resource.</summary>
// Token: 0x04000EF7 RID: 3831
[Token(Token = "0x4000EF7")]
ConnectionString,
/// <summary>The configuration property represents a Uniform Resource Locator (URL) to a Web service.</summary>
// Token: 0x04000EF8 RID: 3832
[Token(Token = "0x4000EF8")]
WebServiceUrl
}
}