using System;
using System.ComponentModel;
using Cpp2IlInjected;
namespace System.Configuration
{
/// Provides data for the event.
// Token: 0x020003B0 RID: 944
[Token(Token = "0x20003B0")]
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: 0x0600190D RID: 6413 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600190D")]
[Address(RVA = "0x2F462C0", Offset = "0x2F452C0", VA = "0x182F462C0")]
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: 0x17000598 RID: 1432
// (get) Token: 0x0600190E RID: 6414 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000598")]
public object NewValue
{
[Token(Token = "0x600190E")]
[Address(RVA = "0x2F462F0", Offset = "0x2F452F0", VA = "0x182F462F0")]
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: 0x17000599 RID: 1433
// (get) Token: 0x0600190F RID: 6415 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000599")]
public string SettingClass
{
[Token(Token = "0x600190F")]
[Address(RVA = "0x2F46320", Offset = "0x2F45320", VA = "0x182F46320")]
get
{
return null;
}
}
/// Gets the application settings key associated with the property.
/// A containing the application settings key.
// Token: 0x1700059A RID: 1434
// (get) Token: 0x06001910 RID: 6416 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700059A")]
public string SettingKey
{
[Token(Token = "0x6001910")]
[Address(RVA = "0x2F46350", Offset = "0x2F45350", VA = "0x182F46350")]
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: 0x1700059B RID: 1435
// (get) Token: 0x06001911 RID: 6417 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700059B")]
public string SettingName
{
[Token(Token = "0x6001911")]
[Address(RVA = "0x2F46380", Offset = "0x2F45380", VA = "0x182F46380")]
get
{
return null;
}
}
}
}