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
@@ -0,0 +1,20 @@
using System;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Specifies that an application settings property has a common value for all users of an application. This class cannot be inherited.</summary>
// Token: 0x020003B0 RID: 944
[Token(Token = "0x20003B0")]
[AttributeUsage(AttributeTargets.Property)]
public sealed class ApplicationScopedSettingAttribute : SettingAttribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.ApplicationScopedSettingAttribute" /> class.</summary>
// Token: 0x06001901 RID: 6401 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001901")]
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
public ApplicationScopedSettingAttribute()
{
}
}
}