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

14 lines
745 B
C#

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: 0x020003AF RID: 943
// (Invoke) Token: 0x0600190A RID: 6410
[Token(Token = "0x20003AF")]
public delegate void SettingChangingEventHandler(object sender, SettingChangingEventArgs e);
}