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

87 lines
3.6 KiB
C#

using System;
using System.ComponentModel;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Provides data for the <see cref="E:System.Configuration.ApplicationSettingsBase.SettingChanging" /> event.</summary>
// Token: 0x020003B0 RID: 944
[Token(Token = "0x20003B0")]
public class SettingChangingEventArgs : CancelEventArgs
{
/// <summary>Initializes an instance of the <see cref="T:System.Configuration.SettingChangingEventArgs" /> class.</summary>
/// <param name="settingName">A <see cref="T:System.String" /> containing the name of the application setting.</param>
/// <param name="settingClass">A <see cref="T:System.String" /> containing a category description of the setting. Often this parameter is set to the application settings group name.</param>
/// <param name="settingKey">A <see cref="T:System.String" /> containing the application settings key.</param>
/// <param name="newValue">An <see cref="T:System.Object" /> that contains the new value to be assigned to the application settings property.</param>
/// <param name="cancel">
/// <see langword="true" /> to cancel the event; otherwise, <see langword="false" />.</param>
// 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)
{
}
/// <summary>Gets the new value being assigned to the application settings property.</summary>
/// <returns>An <see cref="T:System.Object" /> that contains the new value to be assigned to the application settings property.</returns>
// 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;
}
}
/// <summary>Gets the application settings property category.</summary>
/// <returns>A <see cref="T:System.String" /> containing a category description of the setting. Typically, this parameter is set to the application settings group name.</returns>
// 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;
}
}
/// <summary>Gets the application settings key associated with the property.</summary>
/// <returns>A <see cref="T:System.String" /> containing the application settings key.</returns>
// 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;
}
}
/// <summary>Gets the name of the application setting associated with the application settings property.</summary>
/// <returns>A <see cref="T:System.String" /> containing the name of the application setting.</returns>
// 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;
}
}
}
}