This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,13 @@
using System;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Represents the method that will handle the <see cref="E:System.Configuration.ApplicationSettingsBase.SettingChanging" /> event.</summary>
/// <param name="sender">The source of the event, typically an application settings wrapper class derived from the <see cref="T:System.Configuration.ApplicationSettingsBase" /> class.</param>
/// <param name="e">A <see cref="T:System.Configuration.SettingChangingEventArgs" /> containing the data for the event.</param>
// Token: 0x020003B3 RID: 947
// (Invoke) Token: 0x06001921 RID: 6433
[Token(Token = "0x20003B3")]
public delegate void SettingChangingEventHandler(object sender, SettingChangingEventArgs e);
}