using System; using Cpp2IlInjected; namespace System.Configuration { /// Provides a string that describes an individual configuration property. This class cannot be inherited. // Token: 0x020003CA RID: 970 [Token(Token = "0x20003CA")] [AttributeUsage(AttributeTargets.Property)] public sealed class SettingsDescriptionAttribute : Attribute { /// Initializes an instance of the class. /// The used as descriptive text. // Token: 0x0600197C RID: 6524 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600197C")] [Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0")] public SettingsDescriptionAttribute(string description) { } /// Gets the descriptive text for the associated configuration property. /// A containing the descriptive text for the associated configuration property. // Token: 0x170005BB RID: 1467 // (get) Token: 0x0600197D RID: 6525 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170005BB")] public string Description { [Token(Token = "0x600197D")] [Address(RVA = "0x2F46C50", Offset = "0x2F45C50", VA = "0x182F46C50")] get { return null; } } } }