using System;
using Cpp2IlInjected;
namespace System.Configuration
{
/// Indicates that an application settings property has a special significance. This class cannot be inherited.
// Token: 0x020003DA RID: 986
[Token(Token = "0x20003DA")]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Property)]
public sealed class SpecialSettingAttribute : Attribute
{
/// Initializes a new instance of the class.
/// A enumeration value defining the category of the application settings property.
// Token: 0x060019AE RID: 6574 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60019AE")]
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
public SpecialSettingAttribute(SpecialSetting specialSetting)
{
}
/// Gets the value describing the special setting category of the application settings property.
/// A enumeration value defining the category of the application settings property.
// 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;
}
}
}
}