using System; using System.ComponentModel; using Cpp2IlInjected; namespace System.Configuration { /// Provides data for the event. // Token: 0x020003B4 RID: 948 [Token(Token = "0x20003B4")] public class SettingChangingEventArgs : CancelEventArgs { /// Initializes an instance of the class. /// A containing the name of the application setting. /// A containing a category description of the setting. Often this parameter is set to the application settings group name. /// A containing the application settings key. /// An that contains the new value to be assigned to the application settings property. /// /// to cancel the event; otherwise, . // Token: 0x06001924 RID: 6436 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001924")] [Address(RVA = "0x28AB810", Offset = "0x28AA610", VA = "0x1828AB810")] public SettingChangingEventArgs(string settingName, string settingClass, string settingKey, object newValue, bool cancel) { } /// Gets the new value being assigned to the application settings property. /// An that contains the new value to be assigned to the application settings property. // Token: 0x1700059C RID: 1436 // (get) Token: 0x06001925 RID: 6437 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700059C")] public object NewValue { [Token(Token = "0x6001925")] [Address(RVA = "0x28AB840", Offset = "0x28AA640", VA = "0x1828AB840")] get { return null; } } /// Gets the application settings property category. /// A containing a category description of the setting. Typically, this parameter is set to the application settings group name. // Token: 0x1700059D RID: 1437 // (get) Token: 0x06001926 RID: 6438 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700059D")] public string SettingClass { [Token(Token = "0x6001926")] [Address(RVA = "0x28AB870", Offset = "0x28AA670", VA = "0x1828AB870")] get { return null; } } /// Gets the application settings key associated with the property. /// A containing the application settings key. // Token: 0x1700059E RID: 1438 // (get) Token: 0x06001927 RID: 6439 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700059E")] public string SettingKey { [Token(Token = "0x6001927")] [Address(RVA = "0x28AB8A0", Offset = "0x28AA6A0", VA = "0x1828AB8A0")] get { return null; } } /// Gets the name of the application setting associated with the application settings property. /// A containing the name of the application setting. // Token: 0x1700059F RID: 1439 // (get) Token: 0x06001928 RID: 6440 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700059F")] public string SettingName { [Token(Token = "0x6001928")] [Address(RVA = "0x28AB8D0", Offset = "0x28AA6D0", VA = "0x1828AB8D0")] get { return null; } } } }