Files
Apr2020-Cpp2Il-Dump/System/Configuration/SettingChangingEventArgs.cs
T
niko 8fc35183db a
2026-04-11 22:19:20 +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: 0x020003B4 RID: 948
[Token(Token = "0x20003B4")]
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: 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)
{
}
/// <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: 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;
}
}
/// <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: 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;
}
}
/// <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: 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;
}
}
/// <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: 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;
}
}
}
}