using System; using Cpp2IlInjected; namespace System.Configuration { /// Specifies the default value for an application settings property. // Token: 0x020003C0 RID: 960 [Token(Token = "0x20003C0")] [AttributeUsage(AttributeTargets.Property)] public sealed class DefaultSettingValueAttribute : Attribute { /// Initializes an instance of the class. /// A that represents the default value for the property. // Token: 0x0600195E RID: 6494 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600195E")] [Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")] public DefaultSettingValueAttribute(string value) { } /// Gets the default value for the application settings property. /// A that represents the default value for the property. // Token: 0x170005AE RID: 1454 // (get) Token: 0x0600195F RID: 6495 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170005AE")] public string Value { [Token(Token = "0x600195F")] [Address(RVA = "0x28A0D10", Offset = "0x289FB10", VA = "0x1828A0D10")] get { return null; } } } }