Files
Aug2021-Cpp2IL-Dump/System/Configuration/SettingChangingEventHandler.cs
T
2026-04-10 22:50:51 +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: 0x020003B3 RID: 947
// (Invoke) Token: 0x06001921 RID: 6433
[Token(Token = "0x20003B3")]
public delegate void SettingChangingEventHandler(object sender, SettingChangingEventArgs e);
}