Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

149 lines
6.4 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Provides the base class used to support user property settings.</summary>
// Token: 0x0200037D RID: 893
[Token(Token = "0x200037D")]
public abstract class SettingsBase
{
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsBase" /> class.</summary>
// Token: 0x06001781 RID: 6017 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001781")]
[Address(RVA = "0x2F46AA0", Offset = "0x2F45AA0", VA = "0x182F46AA0")]
protected SettingsBase()
{
}
/// <summary>Gets the associated settings context.</summary>
/// <returns>A <see cref="T:System.Configuration.SettingsContext" /> associated with the settings instance.</returns>
// Token: 0x170004FB RID: 1275
// (get) Token: 0x06001782 RID: 6018 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004FB")]
public virtual SettingsContext Context
{
[Token(Token = "0x6001782")]
[Address(RVA = "0x2F46AD0", Offset = "0x2F45AD0", VA = "0x182F46AD0", Slot = "4")]
get
{
return null;
}
}
/// <summary>Gets a value indicating whether access to the object is synchronized (thread safe).</summary>
/// <returns>
/// <see langword="true" /> if access to the <see cref="T:System.Configuration.SettingsBase" /> is synchronized; otherwise, <see langword="false" />.</returns>
// Token: 0x170004FC RID: 1276
// (get) Token: 0x06001783 RID: 6019 RVA: 0x0000A5C0 File Offset: 0x000087C0
[Token(Token = "0x170004FC")]
public bool IsSynchronized
{
[Token(Token = "0x6001783")]
[Address(RVA = "0x2F46B00", Offset = "0x2F45B00", VA = "0x182F46B00")]
get
{
return default(bool);
}
}
/// <summary>Gets or sets the value of the specified settings property.</summary>
/// <param name="propertyName">A <see cref="T:System.String" /> containing the name of the property to access.</param>
/// <returns>If found, the value of the named settings property.</returns>
/// <exception cref="T:System.Configuration.SettingsPropertyNotFoundException">There are no properties associated with the current object, or the specified property could not be found.</exception>
/// <exception cref="T:System.Configuration.SettingsPropertyIsReadOnlyException">An attempt was made to set a read-only property.</exception>
/// <exception cref="T:System.Configuration.SettingsPropertyWrongTypeException">The value supplied is of a type incompatible with the settings property, during a set operation.</exception>
// Token: 0x170004FD RID: 1277
[Token(Token = "0x170004FD")]
public virtual object this[string propertyName]
{
[Token(Token = "0x6001784")]
[Address(RVA = "0x2F46B30", Offset = "0x2F45B30", VA = "0x182F46B30", Slot = "5")]
get
{
return null;
}
[Token(Token = "0x6001785")]
[Address(RVA = "0x2F46BF0", Offset = "0x2F45BF0", VA = "0x182F46BF0", Slot = "6")]
set
{
}
}
/// <summary>Gets the collection of settings properties.</summary>
/// <returns>A <see cref="T:System.Configuration.SettingsPropertyCollection" /> collection containing all the <see cref="T:System.Configuration.SettingsProperty" /> objects.</returns>
// Token: 0x170004FE RID: 1278
// (get) Token: 0x06001786 RID: 6022 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004FE")]
public virtual SettingsPropertyCollection Properties
{
[Token(Token = "0x6001786")]
[Address(RVA = "0x2F46B60", Offset = "0x2F45B60", VA = "0x182F46B60", Slot = "7")]
get
{
return null;
}
}
/// <summary>Gets a collection of settings property values.</summary>
/// <returns>A collection of <see cref="T:System.Configuration.SettingsPropertyValue" /> objects representing the actual data values for the properties managed by the <see cref="T:System.Configuration.SettingsBase" /> instance.</returns>
// Token: 0x170004FF RID: 1279
// (get) Token: 0x06001787 RID: 6023 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004FF")]
public virtual SettingsPropertyValueCollection PropertyValues
{
[Token(Token = "0x6001787")]
[Address(RVA = "0x2F46B90", Offset = "0x2F45B90", VA = "0x182F46B90", Slot = "8")]
get
{
return null;
}
}
/// <summary>Gets a collection of settings providers.</summary>
/// <returns>A <see cref="T:System.Configuration.SettingsProviderCollection" /> containing <see cref="T:System.Configuration.SettingsProvider" /> objects.</returns>
// Token: 0x17000500 RID: 1280
// (get) Token: 0x06001788 RID: 6024 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000500")]
public virtual SettingsProviderCollection Providers
{
[Token(Token = "0x6001788")]
[Address(RVA = "0x2F46BC0", Offset = "0x2F45BC0", VA = "0x182F46BC0", Slot = "9")]
get
{
return null;
}
}
/// <summary>Initializes internal properties used by <see cref="T:System.Configuration.SettingsBase" /> object.</summary>
/// <param name="context">The settings context related to the settings properties.</param>
/// <param name="properties">The settings properties that will be accessible from the <see cref="T:System.Configuration.SettingsBase" /> instance.</param>
/// <param name="providers">The initialized providers that should be used when loading and saving property values.</param>
// Token: 0x06001789 RID: 6025 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001789")]
[Address(RVA = "0x2F46A10", Offset = "0x2F45A10", VA = "0x182F46A10")]
public void Initialize(SettingsContext context, SettingsPropertyCollection properties, SettingsProviderCollection providers)
{
}
/// <summary>Stores the current values of the settings properties.</summary>
// Token: 0x0600178A RID: 6026 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600178A")]
[Address(RVA = "0x2F46A40", Offset = "0x2F45A40", VA = "0x182F46A40", Slot = "10")]
public virtual void Save()
{
}
/// <summary>Provides a <see cref="T:System.Configuration.SettingsBase" /> class that is synchronized (thread safe).</summary>
/// <param name="settingsBase">The class used to support user property settings.</param>
/// <returns>A <see cref="T:System.Configuration.SettingsBase" /> class that is synchronized.</returns>
// Token: 0x0600178B RID: 6027 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600178B")]
[Address(RVA = "0x2F46A70", Offset = "0x2F45A70", VA = "0x182F46A70")]
public static SettingsBase Synchronized(SettingsBase settingsBase)
{
return null;
}
}
}