using System; using Cpp2IlInjected; namespace System.Configuration { /// Provides the base class used to support user property settings. // Token: 0x0200037D RID: 893 [Token(Token = "0x200037D")] public abstract class SettingsBase { /// Initializes a new instance of the class. // Token: 0x06001781 RID: 6017 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001781")] [Address(RVA = "0x2F46AA0", Offset = "0x2F45AA0", VA = "0x182F46AA0")] protected SettingsBase() { } /// Gets the associated settings context. /// A associated with the settings instance. // 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; } } /// Gets a value indicating whether access to the object is synchronized (thread safe). /// /// if access to the is synchronized; otherwise, . // 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); } } /// Gets or sets the value of the specified settings property. /// A containing the name of the property to access. /// If found, the value of the named settings property. /// There are no properties associated with the current object, or the specified property could not be found. /// An attempt was made to set a read-only property. /// The value supplied is of a type incompatible with the settings property, during a set operation. // 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 { } } /// Gets the collection of settings properties. /// A collection containing all the objects. // 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; } } /// Gets a collection of settings property values. /// A collection of objects representing the actual data values for the properties managed by the instance. // 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; } } /// Gets a collection of settings providers. /// A containing objects. // 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; } } /// Initializes internal properties used by object. /// The settings context related to the settings properties. /// The settings properties that will be accessible from the instance. /// The initialized providers that should be used when loading and saving property values. // 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) { } /// Stores the current values of the settings properties. // 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() { } /// Provides a class that is synchronized (thread safe). /// The class used to support user property settings. /// A class that is synchronized. // 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; } } }