using System; using Cpp2IlInjected; namespace System.Configuration { /// Provides the base class used to support user property settings. // Token: 0x02000381 RID: 897 [Token(Token = "0x2000381")] public abstract class SettingsBase { /// Initializes a new instance of the class. // Token: 0x06001798 RID: 6040 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001798")] [Address(RVA = "0x28ABFF0", Offset = "0x28AADF0", VA = "0x1828ABFF0")] protected SettingsBase() { } /// Gets the associated settings context. /// A associated with the settings instance. // Token: 0x170004FF RID: 1279 // (get) Token: 0x06001799 RID: 6041 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170004FF")] public virtual SettingsContext Context { [Token(Token = "0x6001799")] [Address(RVA = "0x28AC020", Offset = "0x28AAE20", VA = "0x1828AC020", 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: 0x17000500 RID: 1280 // (get) Token: 0x0600179A RID: 6042 RVA: 0x0000A5D8 File Offset: 0x000087D8 [Token(Token = "0x17000500")] public bool IsSynchronized { [Token(Token = "0x600179A")] [Address(RVA = "0x28AC050", Offset = "0x28AAE50", VA = "0x1828AC050")] 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: 0x17000501 RID: 1281 [Token(Token = "0x17000501")] public virtual object this[string propertyName] { [Token(Token = "0x600179B")] [Address(RVA = "0x28AC080", Offset = "0x28AAE80", VA = "0x1828AC080", Slot = "5")] get { return null; } [Token(Token = "0x600179C")] [Address(RVA = "0x28AC140", Offset = "0x28AAF40", VA = "0x1828AC140", Slot = "6")] set { } } /// Gets the collection of settings properties. /// A collection containing all the objects. // Token: 0x17000502 RID: 1282 // (get) Token: 0x0600179D RID: 6045 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000502")] public virtual SettingsPropertyCollection Properties { [Token(Token = "0x600179D")] [Address(RVA = "0x28AC0B0", Offset = "0x28AAEB0", VA = "0x1828AC0B0", 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: 0x17000503 RID: 1283 // (get) Token: 0x0600179E RID: 6046 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000503")] public virtual SettingsPropertyValueCollection PropertyValues { [Token(Token = "0x600179E")] [Address(RVA = "0x28AC0E0", Offset = "0x28AAEE0", VA = "0x1828AC0E0", Slot = "8")] get { return null; } } /// Gets a collection of settings providers. /// A containing objects. // Token: 0x17000504 RID: 1284 // (get) Token: 0x0600179F RID: 6047 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000504")] public virtual SettingsProviderCollection Providers { [Token(Token = "0x600179F")] [Address(RVA = "0x28AC110", Offset = "0x28AAF10", VA = "0x1828AC110", 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: 0x060017A0 RID: 6048 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60017A0")] [Address(RVA = "0x28ABF60", Offset = "0x28AAD60", VA = "0x1828ABF60")] public void Initialize(SettingsContext context, SettingsPropertyCollection properties, SettingsProviderCollection providers) { } /// Stores the current values of the settings properties. // Token: 0x060017A1 RID: 6049 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60017A1")] [Address(RVA = "0x28ABF90", Offset = "0x28AAD90", VA = "0x1828ABF90", 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: 0x060017A2 RID: 6050 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60017A2")] [Address(RVA = "0x28ABFC0", Offset = "0x28AADC0", VA = "0x1828ABFC0")] public static SettingsBase Synchronized(SettingsBase settingsBase) { return null; } } }