This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,112 @@
using System;
using System.Collections.Specialized;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Provides persistence for application settings classes.</summary>
// Token: 0x020003C4 RID: 964
[Token(Token = "0x20003C4")]
public class LocalFileSettingsProvider : SettingsProvider, IApplicationSettingsProvider
{
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.LocalFileSettingsProvider" /> class.</summary>
// Token: 0x06001961 RID: 6497 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001961")]
[Address(RVA = "0x2F411C0", Offset = "0x2F401C0", VA = "0x182F411C0")]
public LocalFileSettingsProvider()
{
}
/// <summary>Gets or sets the name of the currently running application.</summary>
/// <returns>A string that contains the application's display name.</returns>
// 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
{
}
}
/// <summary>Returns the value of the named settings property for the previous version of the same application.</summary>
/// <param name="context">A <see cref="T:System.Configuration.SettingsContext" /> that describes where the application settings property is used.</param>
/// <param name="property">The <see cref="T:System.Configuration.SettingsProperty" /> whose value is to be returned.</param>
/// <returns>A <see cref="T:System.Configuration.SettingsPropertyValue" /> representing the application setting if found; otherwise, <see langword="null" />.</returns>
// 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;
}
/// <summary>Returns the collection of setting property values for the specified application instance and settings property group.</summary>
/// <param name="context">A <see cref="T:System.Configuration.SettingsContext" /> describing the current application usage.</param>
/// <param name="properties">A <see cref="T:System.Configuration.SettingsPropertyCollection" /> containing the settings property group whose values are to be retrieved.</param>
/// <returns>A <see cref="T:System.Configuration.SettingsPropertyValueCollection" /> containing the values for the specified settings property group.</returns>
/// <exception cref="T:System.Configuration.ConfigurationErrorsException">A user-scoped setting was encountered but the current configuration only supports application-scoped settings.</exception>
// 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;
}
/// <summary>Initializes the provider.</summary>
/// <param name="name">The friendly name of the provider.</param>
/// <param name="values">A collection of the name/value pairs representing the provider-specific attributes specified in the configuration for this provider.</param>
// 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)
{
}
/// <summary>Resets all application settings properties associated with the specified application to their default values.</summary>
/// <param name="context">A <see cref="T:System.Configuration.SettingsContext" /> describing the current application usage.</param>
/// <exception cref="T:System.Configuration.ConfigurationErrorsException">A user-scoped setting was encountered but the current configuration only supports application-scoped settings.</exception>
// 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)
{
}
/// <summary>Sets the values of the specified group of property settings.</summary>
/// <param name="context">A <see cref="T:System.Configuration.SettingsContext" /> describing the current application usage.</param>
/// <param name="values">A <see cref="T:System.Configuration.SettingsPropertyValueCollection" /> representing the group of property settings to set.</param>
/// <exception cref="T:System.Configuration.ConfigurationErrorsException">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.</exception>
// 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)
{
}
/// <summary>Attempts to migrate previous user-scoped settings from a previous version of the same application.</summary>
/// <param name="context">A <see cref="T:System.Configuration.SettingsContext" /> describing the current application usage.</param>
/// <param name="properties">A <see cref="T:System.Configuration.SettingsPropertyCollection" /> containing the settings property group whose values are to be retrieved.</param>
/// <exception cref="T:System.Configuration.ConfigurationErrorsException">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.</exception>
// 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)
{
}
}
}