using System; using Cpp2IlInjected; namespace System.Configuration { /// Indicates that an application settings property has a special significance. This class cannot be inherited. // Token: 0x020003D6 RID: 982 [Token(Token = "0x20003D6")] [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: 0x06001997 RID: 6551 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001997")] [Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0")] 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: 0x170005C1 RID: 1473 // (get) Token: 0x06001998 RID: 6552 RVA: 0x0000ACE0 File Offset: 0x00008EE0 [Token(Token = "0x170005C1")] public SpecialSetting SpecialSetting { [Token(Token = "0x6001998")] [Address(RVA = "0x2F47E50", Offset = "0x2F46E50", VA = "0x182F47E50")] get { return SpecialSetting.ConnectionString; } } } }