Files
2026-04-10 22:50:51 +02:00

50 lines
2.3 KiB
C#

using System;
using System.Collections.Specialized;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Provides runtime versions 1.0 and 1.1 support for reading configuration sections and common configuration settings.</summary>
// Token: 0x020003BE RID: 958
[Token(Token = "0x20003BE")]
public sealed class ConfigurationSettings
{
// Token: 0x06001955 RID: 6485 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001955")]
[Address(RVA = "0x289F1D0", Offset = "0x289DFD0", VA = "0x18289F1D0")]
internal ConfigurationSettings()
{
}
/// <summary>Gets a read-only <see cref="T:System.Collections.Specialized.NameValueCollection" /> of the application settings section of the configuration file.</summary>
/// <returns>A read-only <see cref="T:System.Collections.Specialized.NameValueCollection" /> of the application settings section from the configuration file.</returns>
// Token: 0x170005AB RID: 1451
// (get) Token: 0x06001956 RID: 6486 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170005AB")]
public static NameValueCollection AppSettings
{
[Token(Token = "0x6001956")]
[Address(RVA = "0x289F200", Offset = "0x289E000", VA = "0x18289F200")]
get
{
return null;
}
}
/// <summary>Returns the <see cref="T:System.Configuration.ConfigurationSection" /> object for the passed configuration section name and path.</summary>
/// <param name="sectionName">A configuration name and path, such as "system.net/settings".</param>
/// <returns>The <see cref="T:System.Configuration.ConfigurationSection" /> object for the passed configuration section name and path.
///
/// The <see cref="T:System.Configuration.ConfigurationSettings" /> class provides backward compatibility only. You should use the <see cref="T:System.Configuration.ConfigurationManager" /> class or <see cref="T:System.Web.Configuration.WebConfigurationManager" /> class instead.</returns>
/// <exception cref="T:System.Configuration.ConfigurationException">Unable to retrieve the requested section.</exception>
// Token: 0x06001957 RID: 6487 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001957")]
[Address(RVA = "0x289F1A0", Offset = "0x289DFA0", VA = "0x18289F1A0")]
[Obsolete]
public static object GetConfig(string sectionName)
{
return null;
}
}
}