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

15 lines
669 B
C#

using System;
using System.ComponentModel;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Represents the method that will handle the <see cref="E:System.Configuration.ApplicationSettingsBase.SettingsSaving" /> event.</summary>
/// <param name="sender">The source of the event, typically a data container or data-bound collection.</param>
/// <param name="e">A <see cref="T:System.ComponentModel.CancelEventArgs" /> that contains the event data.</param>
// Token: 0x020003B3 RID: 947
// (Invoke) Token: 0x06001919 RID: 6425
[Token(Token = "0x20003B3")]
public delegate void SettingsSavingEventHandler(object sender, CancelEventArgs e);
}