Files
Apr2020-Cpp2Il-Dump/System/Configuration/ApplicationScopedSettingAttribute.cs
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

21 lines
783 B
C#

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()
{
}
}
}