using System; using System.Collections.Specialized; using Cpp2IlInjected; namespace System.Configuration { /// Provides persistence for application settings classes. // Token: 0x020003C4 RID: 964 [Token(Token = "0x20003C4")] public class LocalFileSettingsProvider : SettingsProvider, IApplicationSettingsProvider { /// Initializes a new instance of the class. // Token: 0x06001961 RID: 6497 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001961")] [Address(RVA = "0x2F411C0", Offset = "0x2F401C0", VA = "0x182F411C0")] public LocalFileSettingsProvider() { } /// Gets or sets the name of the currently running application. /// A string that contains the application's display name. // Token: 0x170005B3 RID: 1459 // (get) Token: 0x06001962 RID: 6498 RVA: 0x00002050 File Offset: 0x00000250 // (set) Token: 0x06001963 RID: 6499 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x170005B3")] public override string ApplicationName { [Token(Token = "0x6001962")] [Address(RVA = "0x2F411F0", Offset = "0x2F401F0", VA = "0x182F411F0", Slot = "5")] get { return null; } [Token(Token = "0x6001963")] [Address(RVA = "0x2F41220", Offset = "0x2F40220", VA = "0x182F41220", Slot = "6")] set { } } /// Returns the value of the named settings property for the previous version of the same application. /// A that describes where the application settings property is used. /// The whose value is to be returned. /// A representing the application setting if found; otherwise, . // Token: 0x06001964 RID: 6500 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001964")] [Address(RVA = "0x2F410A0", Offset = "0x2F400A0", VA = "0x182F410A0", Slot = "9")] public SettingsPropertyValue GetPreviousVersion(SettingsContext context, SettingsProperty property) { return null; } /// Returns the collection of setting property values for the specified application instance and settings property group. /// A describing the current application usage. /// A containing the settings property group whose values are to be retrieved. /// A containing the values for the specified settings property group. /// A user-scoped setting was encountered but the current configuration only supports application-scoped settings. // Token: 0x06001965 RID: 6501 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001965")] [Address(RVA = "0x2F410D0", Offset = "0x2F400D0", VA = "0x182F410D0", Slot = "7")] public override SettingsPropertyValueCollection GetPropertyValues(SettingsContext context, SettingsPropertyCollection properties) { return null; } /// Initializes the provider. /// The friendly name of the provider. /// A collection of the name/value pairs representing the provider-specific attributes specified in the configuration for this provider. // Token: 0x06001966 RID: 6502 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001966")] [Address(RVA = "0x2F41100", Offset = "0x2F40100", VA = "0x182F41100", Slot = "4")] public override void Initialize(string name, NameValueCollection values) { } /// Resets all application settings properties associated with the specified application to their default values. /// A describing the current application usage. /// A user-scoped setting was encountered but the current configuration only supports application-scoped settings. // Token: 0x06001967 RID: 6503 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001967")] [Address(RVA = "0x2F41130", Offset = "0x2F40130", VA = "0x182F41130", Slot = "10")] public void Reset(SettingsContext context) { } /// Sets the values of the specified group of property settings. /// A describing the current application usage. /// A representing the group of property settings to set. /// A user-scoped setting was encountered but the current configuration only supports application-scoped settings. /// -or- /// There was a general failure saving the settings to the configuration file. // Token: 0x06001968 RID: 6504 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001968")] [Address(RVA = "0x2F41160", Offset = "0x2F40160", VA = "0x182F41160", Slot = "8")] public override void SetPropertyValues(SettingsContext context, SettingsPropertyValueCollection values) { } /// Attempts to migrate previous user-scoped settings from a previous version of the same application. /// A describing the current application usage. /// A containing the settings property group whose values are to be retrieved. /// A user-scoped setting was encountered but the current configuration only supports application-scoped settings. /// -or- /// The previous version of the configuration file could not be accessed. // Token: 0x06001969 RID: 6505 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001969")] [Address(RVA = "0x2F41190", Offset = "0x2F40190", VA = "0x182F41190", Slot = "11")] public void Upgrade(SettingsContext context, SettingsPropertyCollection properties) { } } }