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: 0x020003D2 RID: 978 [Token(Token = "0x20003D2")] [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: 0x06001990 RID: 6544 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001990")] [Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0")] public SettingsProviderAttribute(string providerTypeName) { } /// Initializes a new instance of the class. /// A containing the settings provider type. // Token: 0x06001991 RID: 6545 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001991")] [Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0")] public SettingsProviderAttribute(Type providerType) { } /// Gets the type name of the settings provider. /// A containing the name of the settings provider. // Token: 0x170005BF RID: 1471 // (get) Token: 0x06001992 RID: 6546 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170005BF")] public string ProviderTypeName { [Token(Token = "0x6001992")] [Address(RVA = "0x2F47C10", Offset = "0x2F46C10", VA = "0x182F47C10")] get { return null; } } } }