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

37 lines
1.5 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Indicates that an application settings property has a special significance. This class cannot be inherited.</summary>
// Token: 0x020003DA RID: 986
[Token(Token = "0x20003DA")]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Property)]
public sealed class SpecialSettingAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SpecialSettingAttribute" /> class.</summary>
/// <param name="specialSetting">A <see cref="T:System.Configuration.SpecialSetting" /> enumeration value defining the category of the application settings property.</param>
// Token: 0x060019AE RID: 6574 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60019AE")]
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
public SpecialSettingAttribute(SpecialSetting specialSetting)
{
}
/// <summary>Gets the value describing the special setting category of the application settings property.</summary>
/// <returns>A <see cref="T:System.Configuration.SpecialSetting" /> enumeration value defining the category of the application settings property.</returns>
// Token: 0x170005C5 RID: 1477
// (get) Token: 0x060019AF RID: 6575 RVA: 0x0000ACF8 File Offset: 0x00008EF8
[Token(Token = "0x170005C5")]
public SpecialSetting SpecialSetting
{
[Token(Token = "0x60019AF")]
[Address(RVA = "0x28AD3A0", Offset = "0x28AC1A0", VA = "0x1828AD3A0")]
get
{
return SpecialSetting.ConnectionString;
}
}
}
}