using System; using Cpp2IlInjected; namespace System.Configuration { /// Specifies the settings provider used to provide storage for the current application settings class or property. This class cannot be inherited. // Token: 0x020003D6 RID: 982 [Token(Token = "0x20003D6")] [AttributeUsage(AttributeTargets.Class | AttributeTargets.Property)] public sealed class SettingsProviderAttribute : Attribute { /// Initializes an instance of the class. /// A containing the name of the settings provider. // Token: 0x060019A7 RID: 6567 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60019A7")] [Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")] public SettingsProviderAttribute(string providerTypeName) { } /// Initializes a new instance of the class. /// A containing the settings provider type. // Token: 0x060019A8 RID: 6568 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60019A8")] [Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")] public SettingsProviderAttribute(Type providerType) { } /// Gets the type name of the settings provider. /// A containing the name of the settings provider. // Token: 0x170005C3 RID: 1475 // (get) Token: 0x060019A9 RID: 6569 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170005C3")] public string ProviderTypeName { [Token(Token = "0x60019A9")] [Address(RVA = "0x28AD160", Offset = "0x28ABF60", VA = "0x1828AD160")] get { return null; } } } }